标签:需要 func inf ++ 功能 image 其他 自己 快速
安装软件的时候,选择默认全部功能;不添加其他插件,插件等自己需要的时候再安装。
以上说明安装成功
编写JS文件:01.helloworld.js
var first = 'hello nodejs';
console.log(first);
function fn (){
console.log('fn函数被调用了');
}
fn ();
for (var i = 0; i <5; i ++) {
console.log(i);
}
if (true){
console.log('123');
}
console.log('文件被修改了')
在node中运行得到如下结果:
标签:需要 func inf ++ 功能 image 其他 自己 快速
原文地址:https://www.cnblogs.com/deer-cen/p/12441919.html