Is there an equivalent to php.net for JavaScript? [closed]
Asked Answered
L

3

6

I am looking for an equivalent to the php.net manual (https://www.php.net/manual/en/) but for javaScript methods and syntax.

Is there a single site that lists out all the javaScript functions available in a clear and concise manner as php.net provides for the PHP language?

Lubricant answered 31/1, 2010 at 12:0 Comment(1)
check out developer.mozilla.org/bm/docs/Web/JavaScriptSaccharoid
P
12

Mozilla Developer Central with its Core JavaScript Reference is a good resource. But as JavaScript is object-oriented, the reference is object-oriented too and there is no overview of all functions/methods.

And if you want to did deeper into how JavaScript works, I recommend to read the ECMAScript specification, the standardized language dialects like JavaScript and JScript are derived from.

Pierre answered 31/1, 2010 at 12:3 Comment(0)
S
5

Mozilla's reference is pretty good, although it's structured in a different way than php.net. That page lists classes and global functions, at least, but it doesn't touch upon the DOM. (Which, technically speaking, isn't part of JavaScript of course.)

Sailboat answered 31/1, 2010 at 12:4 Comment(1)
The DOM references are elsewhere on MDC: developer.mozilla.org/en/DOMTaxiplane
E
0

Unfortunately when you search for JS/HTML/CSS first link you would get is W3Schools. But why not to use it http://www.w3fools.com/ this will give you a nice answer.

Prefer Mozilla Developer Network and Webkit

Edgell answered 31/1, 2010 at 12:29 Comment(2)
W3Schools is really very poor quality. It was the best of a bad bunch in the 90s, but it isn't something to recommend today.Taxiplane
@Taxiplane I agree totally Thanks .... updating answer ...Edgell

© 2022 - 2024 — McMap. All rights reserved.