run js from command line code example

Example 1: javascript run command

const { execSync } = require('child_process');

const output = execSync('ls', { encoding: 'utf-8' });

console.log('The output is:');
console.log(output);

Example 2: how to run a js file in node

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).js

Example 3: how to run javascript in terminal

// With node.js installed in windows commandline
C:\Users\Name> node
> console.log("Hello World");
Hello World
undefined
>