Javascript dictionary

Just wonderin if there were any of these out there. I was lookin for those similiar to the flash help dictionary. THanks!

http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/

http://wp.netscape.com/eng/mozilla/3.0/handbook/javascript/
http://javascript-reference.info
http://www.w3schools.com/js/default.asp
http://www.devguru.com/Technologies/ecmascript/quickref/javascript_index.html

o ok thx, couldn’t seem to find any in google :-\

But i’m not too sure if i understand this. I was trying to find out what substring did. And this is the result:


substring Method
This method returns the characters in a string between two specified indices as a substring.

Syntax: object.substring(indexA, indexB)


What does that mean? thanks

Basically, you specify two numbers. The string in between these two numbers is returned. ( remember that indexes start at 0, not 1).

for example:


var myStringVar = "Hello";
alert(myStringVar.substring(0,3));
//alerts Hel

Ah thats much clearer, thx!