Difference between revisions of "JavaScript"
Karl Jones (Talk | contribs) (etc) |
Karl Jones (Talk | contribs) (etc) |
||
Line 19: | Line 19: | ||
== See also == | == See also == | ||
+ | * [[JavaScript associative arrays|Associative arrays]] | ||
+ | * [[JavaScript objects|Objects]] | ||
* [[JSON]] | * [[JSON]] | ||
Revision as of 10:46, 4 June 2015
JavaScript (/ˈdʒɑːvɑːˌskrɪpt/; JS), also known as ECMAScript, is a dynamic programming language.
It is most commonly used as part of web browsers, whose implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed.
It 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.
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.
Despite some naming, syntactic, and standard library similarities, JavaScript and Java are otherwise unrelated and have very different semantics.
JavaScript is also used in environments that aren not web-based, such as PDF documents, site-specific browsers, and desktop widgets.
Newer and faster JavaScript virtual machines (VMs) and platforms built upon them have also increased the popularity of JavaScript for server-side web applications.
On the client side, JavaScript has been traditionally implemented as an interpreted language, but more recent browsers perform just-in-time compilation.
JavaScript has been standardized in the ECMAScript language specification.
See also
External links
- JavaScript @ wikipedia.org
- Getting Started: JavaScript 101 @ jquery.com
- Introduction to JavaScript @ by Fulvio Corno
- JavaScript Introduction @ w3schools.org
- JavaScript Tutorial @ w3schools.org
- http://msdn.microsoft.com/library/bb288795.aspx[ Introduction to JavaScript] @ microsoft.com
- Getting Started (JavaScript Tutorial) @ mozilla.org
- Introduction to JavaScript @ adobe.com
- Introduction to JavaScript @ sedgestuff.wordpress.com
- Introduction to JavaScript by ~ray
- Dive Into JavaScript @ yujianrong.github.io
- Eloquent JavaScript by Marijn Haverbeke
- Modern Introduction to Programming with JavaScript @ openbookproject.net
- Introduction to Functional Programming in JavaScript @ srirangan.net
- Introduction to Clean JavaScript Design @ svendvanderveken.wordpress.com
- A Re-Introduction to JavaScript @ mozilla.org
- JavaScript for the Total Non-Programmer @ webteacher.com