How do you run JavaScript script through the Terminal?
You can Run your JavaScript File from your Terminal only if you have installed NodeJs runtime. If you have Installed it then Simply open the terminal and type “node FileName.js”. If you don’t have NodeJs runtime environment then go to NodeJs Runtime Environment Download and Download it.
Example 1: Create a JavaScript File Name this file as New.js.
// Simple Addition Function in Javascriptfunction add(a, b) {return a+b}console.log(add(4, 6)) |
Output:
10
Steps :
- Open Terminal or Command Prompt.
- Set Path to where File is Located (using cd).
- Type “node New.js” and Click Enter
Examples 2: Create a JavaScript File Name this file as New2.js.
// Simple Substraction Function in Javascriptfunction sub(a, b) {return a-b}console.log(sub(6, 2)) |
Output:
4


