Add 'heyo.js'
This commit is contained in:
parent
9352269d76
commit
2c16b9ea32
|
@ -0,0 +1,13 @@
|
|||
# Using a standard Web browser's document object
|
||||
document.write('Hello, World!');
|
||||
# or with an alert, using a standard Web browser's window object (window.alert)
|
||||
alert('Hello, world!');
|
||||
|
||||
# or, from the Mozilla command line implementation
|
||||
print('Hello, world!');
|
||||
|
||||
# or, from the Windows Script Host
|
||||
WScript.Echo('Hello, world!');
|
||||
|
||||
# or, from Firebug, Apple Safari, or Google Chrome debug console
|
||||
console.log('Hello, world!');
|
Loading…
Reference in New Issue