how to run javascript code in terminal 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 js file in node terminal

node FileName.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
>

Example 4: how to run js script

$ node // now we can execute code in console
> 2 + 4 //our input
6 //output 
> .exit // or ctrl + c