Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A good reference for Javascript built-in objects?

Tags:

javascript

Where can I find a good list and description of Javascript built-in objects?

I know there are things like Date, Array, String, window, Number, RegExp etc, but I can't find what methods they have anywhere. Is there a single authoritative place containing this information, like php.net does for for PHP?

like image 955
Jim Nickerson Avatar asked Dec 17 '22 07:12

Jim Nickerson


1 Answers

I find Mozilla's MDN to be pretty comprehensive.

As for seeing what features are supported cross browser or not, quirksmode is great. (Although I think there are other sources that are better for the newfangled html5 stuff)

like image 142
hugomg Avatar answered Dec 28 '22 23:12

hugomg