how to run .js using command line code example
Example 1: how to run javascript in terminal
// With node.js installed in windows commandline
C:\Users\Name> node
> console.log("Hello World");
Hello World
undefined
>
Example 2: cli run js
$ jjs hello.js
Hello Nashorn!
$