Skip to content

Latest commit

 

History

History

01_hello_world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

#TODO

Write a program that prints the text "HELLO WORLD" to the console (stdout).


HINTS

To make a Node.js program, create a new file with a .js extension and start writing JavaScript! Execute your program by running it with the node command. e.g.:

$ node program.js

You can write to the file in the same way as in the console:

console.log("text")