Javascript

From wikinotes
Revision as of 22:33, 25 December 2021 by Will (talk | contribs) (→‎Tutorials)

javascript was created by netscape for use in the browser,
enabling webpages to be modified without an additional HTTP request.
It has also been in several other places for various uses like:

  • nodejs to run console apps
  • couchdb as a query language
  • extendscript for automating adobe products

javascript has no official implementation. ecmascript is the standard it belongs to, and browsers expose their own engine/implementation.

Documentation

DOM docs https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
CSSOM docs https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_Model

Tutorials

javascript docs https://developer.mozilla.org/en-US/docs/Web/JavaScript
javascript intro https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript
javascript for impatient programmers https://exploringjs.com/impatient-js/toc.html

Intro

javascript basics
javascript runtime environments

Libraries

javascript libraries

General

Basics

javascript this
javascript comments
javascript variables
javascript datatypes
javascript objects
javascript classes
javascript functions
javascript arguments
javascript generators
javascript async
javascript operators
javascript conditionals
javascript loops
javascript matching
javascript exceptions

Other

javascript garbage collection

In Browser

html events
html DOM
css CSSDOM