スクリプトファイルを作成する

REPLで実行していた関数をスクリプトファイルに記述して実行してみましょう。 まずはhello,jsを作成し、以下のように記述します。

function helloFunction(){
  return 'Hello World!';
}
console.log(helloFunction());

次にターミナルで実行します。

$ node hello.js
Hello World!

と表示されれば成功です。

results matching ""

    No results matching ""