Logo

Programming-Idioms

History of Idiom 1 > diff from v98 to v99

Edit summary for version 99 by Ivan:
[JS] added console log

Version 98

2020-05-04, 15:53:04

Version 99

2020-05-17, 14:52:28

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.