The Boolean class - Tom Kleen

toString(x) Converts a Number object to a string. Example. n = 1.2345. m = n.toFixed(2); console.log("n is: " + n + ". m is: " + m); The Object class. In JavaScript, an object is a collection of values (properties).An object is delimited by curly braces. Inside the braces the object's properties are defined as name and value pairs (name : value ... ................
................