Javascript

The Good Parts

No cover

Javascript (2008, O'Reilly Media, Incorporated)

English language

Published Dec. 22, 2008 by O'Reilly Media, Incorporated.

ISBN:
9780596153830

View on OpenLibrary

4 stars (1 review)

Covers the bits of Javascript that are worth using, and how to use them, as well as the bits that should be avoided.

3 editions

Review of 'JavaScript: The Good Parts' on 'Goodreads'

4 stars

Despite the author’s idiocy regarding software licencing, and his sometimes opinionated… well, opinion on certain things’ evilness, this is a rock-solid book (if you ignore the hints to use his nōn-free software) explaining, to a somewhat versed programmer new to ECMAscript, about the intricacies of the almost-a-bit-functional programming language, and what language constructs to best avoid (“==” (use “===” instead), or the stuff added to make it look like Java™).

For example, you will learn why code breaks when you add or remove the “var” in front of an assignment, and what these “(function () { return function () {…}})();” are for, and why.

This is a pocket reference every programmer that has to touch any ECMAscript code ought to be required to read and understand first. Granted (as per Chad’s review), nowadays (in 2017) most everyone uses some framework(s) to abstract from the foundation of both the language and …