how to run a js file in node

JavaScript
Save your .js file in the same folder as node.js,
For windows , Usually location is- "C:\Program Files\nodejs"
Open 'Command prompt and locate node.js folder' OR directly open 'Node.js command prompt' and type 
>> node (file_name).jsconst inNode = new Function('try{return this===global;}catch(err){return false;}')();
Source

Also in JavaScript: