#Is this how i print hello world in javascript?

16 messages · Page 1 of 1 (latest)

bitter sapphire
#

My memory is a little dusty

#

@rustic snow

rustic snow
#

YEP

#

any other questions??

bitter sapphire
#

maybe later though

rustic snow
#

oki

#

might be slepping

#

could use this for complier

#

good site

bitter sapphire
#

ok

final oak
umbral spoke
#

That is JS DOM manipulation

#

"Pure JS" would exactly be console.log("message");

final oak
#

Could have been worse? 🤷‍♂️ ```javascript
var h = document.createElement('h1');
h.innerText = 'Hello World!';
document.body.prepend(h);