私はオープンソースにまったく慣れていないので、もっと使いたいと思っています。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??
>