JavaScript
From MgmtWiki
Full Title
JavaScriptis a lightweight program language that is typically interpreted by a virtual machine although it can be just-in-time compiled.
Context
JavaScript was first implements by Netscape to add
Solutions
Running a JavaScript
- All modern browser come with JavaScript enabled.
- The common way to run JavaScript on a computer is with Node installed using the local terminal program.
- Save your JavaScript with .js extension.
- Open the command prompt
- Locate your path where the .js file is saved.
- To compile the .js file we have to enter on the terminal
- Node <Filename>.js
- Press the Enter key.