Difference between revisions of "JavaScript"

From MgmtWiki
Jump to: navigation, search
(Context)
(Running a JavaScript)
Line 8: Line 8:
 
# All modern browser come with JavaScript enabled.
 
# All modern browser come with JavaScript enabled.
 
# The common way to run JavaScript on a computer is with Node installed.
 
# The common way to run JavaScript on a computer is with Node installed.
 +
## 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 write
 +
###Node <Filename>.js
 +
## Press the Enter key.
  
 
==References==
 
==References==

Revision as of 11:50, 11 August 2024

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

  1. All modern browser come with JavaScript enabled.
  2. The common way to run JavaScript on a computer is with Node installed.
    1. Save your javascript with .js extension.
    2. Open the command prompt
    3. Locate your path where the .js file is saved.
    4. To compile the .js file we have to write
      1. Node <Filename>.js
    5. Press the Enter key.

References