Javascript

Notes on the Definitive Guide.

Javascript was created to enable dynamic behavior in the documents displayed by web browsers:

  • A browser is like an OS - they provide a platform for application development and a variety of services like networking, storage, threading, etc.
  • “Client-side” Javascript is code written to run in the browser
  • The JS Web APIs are defined by consensus among browser vendors, and it is written in C++.
  • There are no “official” JS docs - Mozilla Development Network (MDN) is the most authoritative source.

Build tools

Toolchains to manage your environments and distribute your code.

Programming environment

Basics

Types and globals.

Objects and organization

Different ways to organize your JS code.

Events

Scripting documents

Document geometry and scrolling

Location, navigation, and history

Networking

Storage

Asynchronous JS

Arrays

Helpful Array methods with examples.

Patterns