Hash,in wikipedia, may relevant to many stuffs. In javascript, hash is a group of name/value pairs where a unique name points to a unique value, and are included within a brace. var hash = { vari01 : "OK", vari02 : "KO" }; console.log(…
Excellent. The 4guysfromrolla example is very helpful, thanks. I've pasted a complete javascript.js file below which allows one to create a dictionary to make calls like the following: var userDict = new Dictionary(); userDict.Add("smith", &qu…
http://www.nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/ How to Convert Array-Like to Array If you wish to convert an array-like object to an array for use with array methods, you can use one of the followin…
JavaScript Math Object Math Object The Math object allows you to perform mathematical tasks. Math is not a constructor. All properties/methods of Math can be called by using Math as an object, without creating it. Syntax var x = Math.PI; // Returns P…