how to run js file in node terminal

C++
node FileName.js// With node.js installed in windows commandline
C:\Users\Name> node
> console.log("Hello World");
Hello World
undefined
> $ node // now we can execute code in console
> 2 + 4 //our input
6 //output 
> .exit // or ctrl + c
Source

Also in C++: