From 2c16b9ea328c7e693915dfa1e1a75ca6b511363f Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Thu, 8 Jul 2021 04:43:54 +0000 Subject: [PATCH] Add 'heyo.js' --- heyo.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 heyo.js diff --git a/heyo.js b/heyo.js new file mode 100644 index 0000000..3264a10 --- /dev/null +++ b/heyo.js @@ -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!'); \ No newline at end of file