ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
JavaScript Pocket Reference 2ed
Author:
David Flanagan
ISBN:
0-596-00411-7
Publisher:
O'Reilly
Pages:
127pp
Price:
£10-50
Reviewer:
Emma Willis
Subject:
javascript
Appeared in:
15-4
This little handbook is ideal for developers of Javascript applications at any level.

Meant as a companion to its big brotherJavascript: The Definitive Guide, this book, with only 127 pages, may attempt to address the basics of Javscript programming, but would not stand alone as a Javscript introduction. Instead, it works well as a quick reference guide.

The first half of the book covers all of the basics of Javascript, from forming simple commands to creating object-oriented Javascript applications. No more than a paragraph is given to each code structure or tool. For beginners, or non-programmers, there is an introduction to simple code constructs such as looping structures and try/catch blocks. For the slightly more advanced, there are simple examples of browser and window commands and an introduction to legacy and W3CDOM elements.

The second half of the book is a Javascript API reference. Listed in alphabetical order, it details methods that can be applied to the 40 or so classes of object that the author has identified (there is no official set of class names).

One of the most useful elements of this book is the breakdown of available methods into those supported by Internet Explorer, by Netscape or as W3C or legacy DOM standards. Admittedly, it only declares support for versions 4 of both IE and Netscape, but generally I find it safe to assume that Javascript methods supported in later versions are still supported now. As a second edition, this book covers new additions to the Javascript standards, up to and including Javascript 1.5.

I am sure that many people will find this reference book indispensable as I have struggled to find a definitive online Javascript reference.Internet