Difference between revisions of "JavaScript"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
 
Line 84: Line 84:
 
* [http://webteacher.com/javascript/ JavaScript for the Total Non-Programmer] @ webteacher.com
 
* [http://webteacher.com/javascript/ JavaScript for the Total Non-Programmer] @ webteacher.com
 
* [https://medium.com/@benastontweet/lesson-1a-the-history-of-javascript-8c1ce3bffb17#.vkikbm9qc A brief history of JavaScript]
 
* [https://medium.com/@benastontweet/lesson-1a-the-history-of-javascript-8c1ce3bffb17#.vkikbm9qc A brief history of JavaScript]
 +
* [http://creativejs.com/ Creative JS]
  
 
JavaScript graphics:
 
JavaScript graphics:

Latest revision as of 12:34, 30 September 2018

JavaScript (/ˈdʒɑːvɑːˌskrɪpt/; JS), also known as ECMAScript, is a dynamic programming language.

Description

It is most commonly used as part of web browsers, whose implementations include client-side scripts which perform a wide range of tasks, including:

Web applications

JavaScript is widely used for web applications, including single-page applications.

Programming paradigms

JavaScript is classified as a prototype-based scripting language with dynamic typing and first-class functions. This mix of features makes it a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles.

Non-web uses for JavaScript

JavaScript is also used in environments that aren not web-based, such as PDF documents, site-specific browsers, and desktop widgets.

Just-in-time compilation

On the client side, JavaScript has been traditionally implemented as an interpreted language, but more recent browsers perform just-in-time compilation.

Server-side JavaScript

JavaScript is also used in server-side network programming with runtime environments such as Node.js, game development and the creation of desktop and mobile applications.

Newer and faster JavaScript virtual machines (VMs) and platforms built upon them have also increased the popularity of JavaScript for server-side web applications.

Standards

JavaScript has been standardized in the ECMAScript language specification.

JavaScript is not Java

Despite some naming, syntactic, and standard library similarities, JavaScript and Java are otherwise unrelated and have very different semantics.

See also

External links

JavaScript graphics:

  • Dwitter - JavaScript animations using 140 characters or less