Difference between revisions of "JavaScript"
From MgmtWiki
Line 1: | Line 1: | ||
==Full Title== | ==Full Title== | ||
− | [[JavaScript]]is a lightweight | + | [[JavaScript]]is a lightweight programming language that is typically interpreted by a virtual machine although it can be just-in-time compiled. |
JavaScript is a pseudonym for ECMA script. There is no actual connection with the language Java other than historical. | JavaScript is a pseudonym for ECMA script. There is no actual connection with the language Java other than historical. | ||
Line 7: | Line 7: | ||
[[JavaScript]] was first implements by Netscape to add local programmability to the browser. | [[JavaScript]] was first implements by Netscape to add local programmability to the browser. | ||
− | In | + | In 2017 an web assembly language (WASM) was added to most browsers. Now when you hear that a app is JavaScript-enabled, it will usually support WASM as well. |
==Solutions== | ==Solutions== | ||
===Running a JavaScript=== | ===Running a JavaScript=== |
Revision as of 12:04, 11 August 2024
Full Title
JavaScriptis a lightweight programming language that is typically interpreted by a virtual machine although it can be just-in-time compiled.
JavaScript is a pseudonym for ECMA script. There is no actual connection with the language Java other than historical.
Context
JavaScript was first implements by Netscape to add local programmability to the browser.
In 2017 an web assembly language (WASM) was added to most browsers. Now when you hear that a app is JavaScript-enabled, it will usually support WASM as well.
Solutions
Running a JavaScript
- All modern browsers 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 a terminal program that accepts command prompts
- Locate your path where the .js file is saved.
- To compile the .js file enter on the terminal
- Node <Filename>.js
- Press the Enter key.