Reputation: 3885
Is there a dictionary for the language of javascript?
Eg if I want to lookup what "catch" is/means/does in javascript.
And also to get a good overview of ALL the "words" of the language to see what "words" you have missed.
Upvotes: 0
Views: 1102
Reputation: 1378
Take a look at JavaScript: The Good Parts, it is a good read.
Upvotes: 0
Reputation: 3407
I would suggest the JavaScript Reference at the Mozilla Developer Network.
Upvotes: 4
Reputation: 41767
Try https://developer.mozilla.org/en/JavaScript/Reference/Reserved_Words
It lists all of the currently key words, as well as those reserved for future use along with links explaining what they mean and how they are used.
Upvotes: 3