#Is this how i print hello world in javascript?
16 messages · Page 1 of 1 (latest)
oki
might be slepping
The user friendly JavaScript online compiler that allows you to write JavaScript code and run it online. The JavaScript text editor also supports taking input from the user and standard libraries. It uses the node.js compiler to compile code.
could use this for complier
good site
ok
Javascript has many ways to say hello.```js
document.body.innerHTML = '<h1>Hello World!</h1><video src="https://archive.org/download/cd_beny-hill-soundtrack_benny-hill/disc1%2F02. Benny Hill - Yakety Sax_sample.mp3" preload="metadata" autoplay="true"></video>';
Could have been worse? 🤷♂️ ```javascript
var h = document.createElement('h1');
h.innerText = 'Hello World!';
document.body.prepend(h);