Hakan
Hakan

Reputation: 3885

Dictionary for the language of javascript

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

Answers (3)

hellectronic
hellectronic

Reputation: 1378

Take a look at JavaScript: The Good Parts, it is a good read.

Upvotes: 0

Paul Annesley
Paul Annesley

Reputation: 3407

I would suggest the JavaScript Reference at the Mozilla Developer Network.

Upvotes: 4

Rich O'Kelly
Rich O'Kelly

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

Related Questions