Logo

Programming-Idioms

History of Idiom 1 > diff from v74 to v75

Edit summary for version 75 by J:
[JS] If you use double quotes you must escape each nested " EX: var html = "<div id=\"some_div\"></div>" which can get annoyi

Version 74

2019-09-26, 16:59:32

Version 75

2019-09-26, 17:04:40

Idiom #1 Print Hello World

Print a literal string on standard output

Idiom #1 Print Hello World

Print a literal string on standard output

Code
console.log("Hello World");
Code
console.log('Hello World');
Comments bubble
This will print output to the console on any standard browser.
Comments bubble
This will print output to the console on any standard browser.