Jump to content

Wikipedia:WikiProject JavaScript/Glossary of JavaScript

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by The Transhumanist (talk | contribs) at 08:50, 27 January 2018 (update link). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

This is an alphabetized glossary of terms pertaining to the programming language JavaScript, along with their meanings in the context of that language. JavaScript is the programming language of the Web. It is one of the 3 core web development technologies (the other two being HTML and CSS), and it is used on most web pages. Note that JavaScript is not related to Java; they are two distinctly different programming languages. Communication about JavaScript is highly jargonized. The following entries should help in understanding reading material about JavaScript, and serve as search terms for exploring the subject further.

A

B

  • Best practice
  • Bookmarklet – technique of saving JavaScript within a bookmark or hyperlink, so that it can be executed by clicking on it. In many cases, the link can be dragged and dropped to the browser toolbar for easier access.

C

  • Camel case
  • Cascading Style Sheets
  • Chakra – JavaScript engine developed by Microsoft for its Microsoft Edge web browser. It is a fork of the JScript engine used in Internet Explorer.
  • Class
  • Client-side
  • Client-side JavaScript
  • Closure
  • Comment
  • CommonJS – project to create specifications for JavaScript beyond client-side scripting, to expand it into a more full-fledged language. For example, for writing server-side scripts and native desktop applications.
  • Concatenation
  • CouchDB – server database that uses JavaScript as its query language.
  • CSS – Cascading Style Sheets.

D

  • Data type
  • Declarative programming
  • Document Object Model – the hierarchy (tree) produced by the browser of all the elements of a webpage. By processing the DOM via "methods" (functions stored as object properties, that is, the actions that can be performed on objects), JavaScript can dynamically change the page's HTML.[1]
  • DOM – Document Object Model
  • Dynamic HTML – predecessor of Unobtrusive JavaScript.

E

  • ECMAScript – the specification language upon which JavaScript is based. The terms "EMCAScript" and "JavaScript" are used interchangeably within the field. 'ES' has also been used as a prefix for shorthand names of versions of JavaScript:
    • 'ES5' – ECMAScript Fifth Edition, adopted in 2009.
    • 'ES6' / 'ES2015' – ECMAScript Sixth Edition, adopted in 2015.
    • 'ES7' / 'ES2016' – ECMAScript Seventh Edition, adopted in 2016.
    • 'ES2017' – ECMAScript Eighth Edition, adopted in 2017.
  • Ecosystem
  • Etymology of JavaScript
  • Event-driven programming
  • Expression

F

G

H

  • HTML
  • HTML scripting – how locally executable scripts (such as those written in JavaScript) may be used in a web page.

I

J

K

L

M

N

  • Nashorn – JavaScript engine developed in the Java programming language by Oracle. It is based on the Da Vinci Machine (JSR 292) and was released with Java 8. Its purposes are to enable embedding JavaScript in Java applications, and to develop standalone JavaScript applications.
  • Node.js – open-source, cross-platform JavaScript runtime environment for executing JavaScript code server-side, to produce dynamic web page content before the page is sent to the user's web browser. Node.js is built upon the Chrome V8 JavaScript engine.
  • NWJS

O

P

Q

R

S

T

U

  • Unobtrusive JavaScript
  • Userscript – JavaScript program written to modify web pages to augment browsing. They are installed in browsers by use of a userscript manager browser extension like Tampermonkey or Greasemonkey. A userscript feature is also available for registered users of Wikipedia, and can augment editing and viewing of that encyclopedia's pages.
  • Userscript manager

V

W

X

Y

Z

See also

Further reading

  1. ^ http://www.w3schools.com/js/js_htmldom.asp
  2. ^ Looper, Jen (2015-09-21). "A Guide to JavaScript Engines for Idiots". Telerik Developer Network. Retrieved 2016-03-17.