1.Hello World
创建项目 learnNode
创建文件 hello.js
【code】
'use strict';
console.log('Hello, world.');
【运行】
命令行:node hello.js
IDE模式:右击hello.js RUN
2.注意严格模式
文件模式:文件头加 'use strict';
全局模式:node--use_strict calc.js
1.Hello World
创建项目 learnNode
创建文件 hello.js
【code】
'use strict';
console.log('Hello, world.');
【运行】
命令行:node hello.js
IDE模式:右击hello.js RUN
2.注意严格模式
文件模式:文件头加 'use strict';
全局模式:node--use_strict calc.js