Answers for "nodejs RPL"

0

nodejs RPL

//node is typed in the console to access REPL
$ node
 
//the > indicates that REPL is running
// anything written after > will be evaluated 
> console.log("HI")
 
// REPL has evaluated the line and has printed out HI
HI
Posted by: Guest on January-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language