vote up 23 vote down star
13

I find myself using Javascript day to day without a solid understanding of the language. There are some great writeups out there about using specific features of the language, but I'd like a distilled, printed book reference about the language itself.

Please list good books that discuss the JavaScript language; not frameworks, usage and quirks.

flag

23 Answers

vote up 15 vote down check

The javascript book from o'reilly is great.

Javascript The Definitive guide

link|flag
This is the one I ended getting. It was exactly what I wanted. – jollyjerry Sep 30 '08 at 22:48
1  
Someone should edit this link, so that the name of the book becomes obvious. Currently it's encoded in URL. – Rene Saarsoo Jan 19 at 19:36
vote up 31 vote down

Douglas Crockford's recent JavaScript: The Good Parts from O'Reilly is an excellent overview of the JavaScript language from a Computer Science/Programming point of view. How Objects/Inheritance works, what language constructs are available, how scope works, how closure works, etc.

It also highlights some features Crockford thinks are "Bad" and to be avoided. Whether or not you agree with him it's good background information to have.

link|flag
There's a Kindle copy of this available now. Even better. – Steve Rowe Aug 4 at 0:19
+1 I just got it. You're right that is a phenomenally good book – Kevin Nov 11 at 21:27
vote up 20 vote down

I've found these two books to be universally embraced:

JavaScript: The Definitive Guide by David Flanagan

and

JavaScript: The Good Parts by Douglas Crockford

You might also be interested in viewing Crockford speak over at Yahoo Video:

Douglas Crockford: "The JavaScript Programming Language"/1 of 4

Douglas Crockford: "The JavaScript Programming Language"/2 of 4

Douglas Crockford: "The JavaScript Programming Language"/3 of 4

Douglas Crockford: "The JavaScript Programming Language"/4 of 4

link|flag
How do The Definitive Guide and The Good parts differ in approach/style and language coverage? – Sam Hasler Sep 24 '08 at 14:02
Oo, Douglas Crockford recommends The Definitive Guide as the "least bad" JavasScript book in the first video – Sam Hasler Sep 24 '08 at 19:45
Crockford has his opinions, and he can keep them. I don't know who died and proclaimed him God of JavaScript, but he sure thinks he is. Granted, the man knows JavaScript, but like anything, there are certainly things he believes that not everyone agrees on... – Jason Bunting Jun 10 at 15:49
vote up 5 vote down

I thought JavaScript: the Definitive Guide was a nice one.

http://oreilly.com/catalog/9780596101992/index.html

link|flag
vote up 3 vote down

"Pro JavaScript techniques" by John Resig

Pro JavaScript techniques

link|flag
vote up 2 vote down

Javascript: The Good Parts

link|flag
vote up 1 vote down

w3Schools has one of the simplest material.

link|flag
vote up 1 vote down

Take a look at ECMA-262, the official specification for ECMAScript (*cough* JavaScript) syntax, semantics, and core objects. Bear in mind it does not cover web-specific objects or interfaces (e.g. the DOM in its various forms), as these are outside of the language proper.

It has downsides:

  • It's not a printed document as you requested, unless you print it yourself.
  • It's verbose and not terribly well-written. For instance, many of the specifications are listed in algorithmic steps rather than described in prose (e.g. "1. Let x be the foo value; 2. Shift x by three bits to the left; ...").
link|flag
vote up 1 vote down

This is a really good book:

Object oriented javascript

link|flag
vote up 1 vote down

Not a paper-based book, but Eloquent JavaScript fits the rest of your description -- and has a built-in JS console for immediate programming gratification.

link|flag
vote up 1 vote down
link|flag
He's John Resig (without "n") – squadette Sep 16 '08 at 18:25
vote up 0 vote down

Book: I like the Rhino book

i know you asked for books but I love the sample code at Doc JavaScript http://www.webreference.com/js/

link|flag
vote up 0 vote down

Another vote for JavaScript: The Definitive Guide.

link|flag
Jeff, you should vote the post up, rather than commenting as a separate answer. This is the way the community shows its approval of the response. – Danimal Sep 16 '08 at 17:44
vote up 0 vote down

Javascript: The definitive guide explains the core JavaScript language in detail

link|flag
vote up 0 vote down

For the most part, I am familiar with basic syntax or can look that up easily. It tends to be the properties and built-in functions I really struggle to find a good reference for. That's why I try to snag the O'Reilly Pocket reference for every language I have to work in. The JavaScript one is particularly handy.

link|flag
vote up 0 vote down

JavaScript Pocket Reference by David Flanagan, published by O'Reilly. ISBN 0-596-00411-7.

link|flag
vote up 0 vote down

JavaScript: The Definitive Guide

and

JavaScript: The Good Parts

link|flag
vote up 0 vote down

I found this book to be pretty good at getting to the core of the language:

Professional JavaScript for Web Developers

link|flag
vote up 0 vote down

Yahoo has a very good series of lectures on Javascript by Douglas Crockford —

The JavaScript Programming Language

link|flag
vote up 0 vote down

I personally have the second edition, but this book was fantastic.

Beginning Javascript

link|flag
vote up 0 vote down

Since programmers new to JavaScript are going to be reading this too, I'd like to mention that Head First JavaScript is a really good introduction to the language.

link|flag
vote up 0 vote down

JavaScript: The Missing Manual

JavaScript: The Missing Manual

This one surprised me. It's great. Covers JavaScript and also jQuery. Very practical.

link|flag
vote up 0 vote down

ppl on JavasSript has to be the best javascript book I have read. This is from the guy that runs quirksmode.org

quirksmode book cover

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.