command to run js file code example
Example 1: javascript running at node
const inNode = new Function('try{return this===global;}catch(err){return false;}')();
Example 2: how to run js script
$ node // now we can execute code in console
> 2 + 4 //our input
6 //output
> .exit // or ctrl + c