📜  nodejs RPL - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:14.602000             🧑  作者: Mango

代码示例1
//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