run node file in terminal code example
Example 1: how to run js file in node terminal
node FileName.js
Example 2: how to run javascript in terminal
// With node.js installed in windows commandline
C:\Users\Name> node
> console.log("Hello World");
Hello World
undefined
>