Add 'heyo.js'

This commit is contained in:
Sarimoko 2021-07-08 04:43:54 +00:00
parent 9352269d76
commit 2c16b9ea32
1 changed files with 13 additions and 0 deletions

13
heyo.js Normal file
View File

@ -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!');