我对开源完全陌生,真的很想更多地使用它。我从 nodejs.org 安装了 (x86)node.js。我从安装列表中启动了“Node.js 命令提示符”,并执行了 node.exe。我正在尝试运行一些示例 javascript。如果我这样做,为什么会这样:
>var life = 11;
undefined
^^^^^^^^^
why am I getting this message?
or
>a = [1,2,3]
[1,2,3]
>a.forEach(function (v) {console.log(v);});
1
2
3
undefined
^^^^^^^^^
//still get this, even though the script executed??
>