Michael Sattler Archives

RECENT

Javascript Events — Handling All The Things

Events are actions which occur independently of the currently executing program. Events are created within the computer,...

Javascript JSON & JSON Objects — Moving Data Around

JSON (JavaScript Object Notation) — originating from Javascript — is now a widely-used data-interchange format supported by...

Javascript Date — Creating, Getting, and Setting Time

Dates (and times) are integral to most computer software. Javascript provides a Date object and a whole...

Javascript Array Sort — Moving The Links Around

Javascript arrays are a special kind of variable which can hold more than one value at a...

Javascript Object Constructors — Building Blocks

All Javascript types are based internally on objects. These are essential to creating robust and maintainable software...

Javascript Prototypes — The Backbone of Classes

All Javascript types are based internally on objects called prototypes, including Javascript arrays and strings. Developers may...