up vote 150 down vote favorite
140
share [g+] share [fb]

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.

link|improve this question
feedback

closed as not constructive by Bo Persson, casperOne Dec 3 '11 at 5:21

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by Bo Persson Dec 3 '11 at 5:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

26 Answers

up vote 70 down vote accepted

The javascript book from o'reilly is great.

Javascript The Definitive guide

link|improve this answer
1  
This is the one I ended getting. It was exactly what I wanted. – user13200 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 '09 at 19:36
feedback

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|improve this answer
1  
There's a Kindle copy of this available now. Even better. – Steve Rowe Aug 4 '09 at 0:19
1  
+1 I just got it. You're right that is a phenomenally good book – Kevin Nov 11 '09 at 21:27
watching crockford's videos will contribute to you just as much, maybe more. – Comptrol Jul 3 '10 at 21:00
5  
"The Good Parts" is a great book, but there's a couple reasons it shouldn't be your only JavaScript book. First, it doesn't cover browser APIs at all, rightfully so, since it's a book about the language itself (also Crockford considers the DOM APIs to be a "bad part"). Second, Crockford holds very strong opinions about JavaScript style, and thus this book is somewhat opinionated. I'd recommend "The Good Parts" as a supplement to "The Definitive Guide" by David Flanagan. – tlrobinson Dec 3 '10 at 0:02
feedback

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|improve this answer
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
4  
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 '09 at 15:49
Sam: Douglas Crockford is the author of Javascript: The Good Parts. It was published in 2008, a year after these videos were recorded. – pix0r Dec 23 '09 at 16:29
1  
I must disagree with Jason, I've never gotten the impression Crockford thinks of himself in this way, I think he always clearly states when its a personal opinion, and never claims any false authority. I found the videos the perfect intro to the language for a c++/java programmer as myself trying to get a feel for the language. I was trying to understand a specific piece of code, and after seeing them, I now clearly do. Thx for the links. – Emile Vrijdags Mar 31 '10 at 18:42
feedback

"Pro JavaScript techniques" by John Resig

Pro JavaScript techniques

link|improve this answer
FYI, your image is broken here, might want to replace it – Tristan Havelick Jun 5 '10 at 17:42
feedback

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|improve this answer
Now this IS a paper based book after all – Zach L Mar 28 '11 at 4:30
feedback

ppk on JavaScript has to be the best JavaScript book I have read. This is from the guy that runs quirksmode.org.

quirksmode book cover

link|improve this answer
feedback

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|improve this answer
feedback

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

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

link|improve this answer
feedback
link|improve this answer
He's John Resig (without "n") – squadette Sep 16 '08 at 18:25
feedback

This is a really good book:

Object oriented javascript

link|improve this answer
feedback

Javascript: The Good Parts

link|improve this answer
feedback

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

Professional JavaScript for Web Developers

link|improve this answer
This is by far my favorite book on JavaScript, and perfect for folks who are using the language already but want a better understanding of it. I'd vote for it 5 times if I could. – Marcus Dec 2 '10 at 14:59
great book ,,, thanks – tarek11011 May 22 '11 at 1:14
feedback

JavaScript Patterns

enter image description here

JavaScript Patterns is a good intermediate-advanced book. While this book hovers over some of the language features, it concentrates on how to implement common patterns, the JavaScript way. A must read for anybody serious about JavaScript.

This book is best read after Crockford's JavaScript: The Good Parts.

link|improve this answer
feedback

JavaScript: The Missing Manual

JavaScript: The Missing Manual

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

JavaScript: The Definitive Guide

and

JavaScript: The Good Parts

link|improve this answer
feedback

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

The JavaScript Programming Language

link|improve this answer
feedback

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

Beginning Javascript

link|improve this answer
feedback

You can find good books on javasscript at http://www.goodbookson.com/index.php/category/javascript/

link|improve this answer
feedback

w3Schools has one of the simplest material.

link|improve this answer
2  
Theres some pretty confusing explanations on there too unfortunately - namely w3schools.com/jsref/jsref_prototype_math.asp – Dr. Frankenstein Jun 13 '10 at 22:15
9  
Oh please, don't recommend W3Schools (which is not affiliated to the W3C): it contains lots of horrible examples, bad practices and simply incorrect statements. Use something more solid instead, like MDC. – Marcel Korpel Dec 15 '10 at 17:18
feedback

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