From Overview of JavaScript I -- Basic Web Scripting Language CPS616 Technologies of the Information Age -- Spring Semester 99. byGeoffrey C. Fox (Tom Scavo)
JavaScript has ten built-in objects:
plus the Global object discussed earlier
An instance object is created with new:
var today = new Date();
var answers = new Array(0,1,0);
We will learn how to create objects in other ways later on e.g. fred = {}; creates a null object.