Buy new:
$27.90
$3.99 delivery: June 16 - 23
Ships from: GreenIceMedia
Sold by: GreenIceMedia
List Price: $64.99 Details

The List Price is the suggested retail price of a new product as provided by a manufacturer, supplier, or seller. Except for books, Amazon will display a List Price if the product was purchased by customers on Amazon or offered by other retailers at or above the List Price in at least the past 90 days. List prices may not necessarily reflect the product's prevailing market price.
Learn more
Save: $37.09 (57%)
$3.99 delivery June 16 - 23. Details
Only 1 left in stock - order soon
[{"displayPrice":"$27.90","priceAmount":27.90,"currencySymbol":"$","integerValue":"27","decimalSeparator":".","fractionalValue":"90","symbolPosition":"left","hasSpace":false,"showFractionalPartIfEmpty":true,"offerListingId":"UEOdytWlrqbXhDXnCRA76%2FW0sRmM2i9fpi9tBULJWjeIpjzk%2BJ%2F5MhBM60ViW83JRrzbIUUihPx5MGQXKmTlkcJ3IIxwGrzBBRUUlGdzHUVA4lWKr7yMY49BQ5kOHHhM35SQ877QhV0QtJmKhOrlTvVT1Boh4hF%2FidpQFFz59rSEtYvcTeyqCIgGc9rC7SM%2F","locale":"en-US","buyingOptionType":"NEW"},{"displayPrice":"$12.88","priceAmount":12.88,"currencySymbol":"$","integerValue":"12","decimalSeparator":".","fractionalValue":"88","symbolPosition":"left","hasSpace":false,"showFractionalPartIfEmpty":true,"offerListingId":"UEOdytWlrqbXhDXnCRA76%2FW0sRmM2i9f8%2Fk1Cx1owuPwLCqlhmenzlrwzYHnuihO1NFkAwHYquP8WbR4yc8EKcBhSH73d20X8UvoM%2FafhuE894C57YL1PWdI4%2FSh1ZKNsH3K3h1fhA604S96FCQGmIovFyOEXpRicME0LcIGleRM7qBhr7xc4vEDKpyoehWM","locale":"en-US","buyingOptionType":"USED"}]
$$27.90 () Includes selected options. Includes initial monthly payment and selected options. Details
Price
Subtotal
$$27.90
Subtotal
Initial payment breakdown
Shipping cost, delivery date, and order total (including tax) shown at checkout.
Payment
Secure transaction
Your transaction is secure
We work hard to protect your security and privacy. Our payment security system encrypts your information during transmission. We don’t share your credit card details with third-party sellers, and we don’t sell your information to others. Learn more
Ships from
GreenIceMedia
Sold by
Returns
Eligible for Return, Refund or Replacement within 30 days of receipt
Eligible for Return, Refund or Replacement within 30 days of receipt
This item can be returned in its original condition for a full refund or replacement within 30 days of receipt. You may receive a partial or no refund on used, damaged or materially different returns.
Payment
Secure transaction
We work hard to protect your security and privacy. Our payment security system encrypts your information during transmission. We don’t share your credit card details with third-party sellers, and we don’t sell your information to others. Learn more
Ships from
GreenIceMedia
Sold by
Returns
Eligible for Return, Refund or Replacement within 30 days of receipt
This item can be returned in its original condition for a full refund or replacement within 30 days of receipt. You may receive a partial or no refund on used, damaged or materially different returns.
Get Fast, Free Shipping with Amazon Prime
FREE delivery Friday, June 16 on orders shipped by Amazon over $25
Used: Very Good | Details
Condition: Used: Very Good
Comment: Nice clean copy with no highlighting or writing. We take pride in our accurate descriptions. Satisfaction Guaranteed.
Access codes and supplements are not guaranteed with used items.
Have one to sell?
Other Sellers on Amazon
Added
$49.99
& FREE Shipping. Details
Sold by: Livelyzone
Sold by: Livelyzone
(10 ratings)
90% positive over lifetime
Only 1 left in stock - order soon.
Shipping rates and Return policy
Added
$49.99
& FREE Shipping. Details
Sold by: Sparrow Stores
Sold by: Sparrow Stores
New Seller
Only 1 left in stock - order soon.
Shipping rates and Return policy
Added
$49.99
& FREE Shipping. Details
Sold by: NewCoreCycling
Sold by: NewCoreCycling
(7 ratings)
100% positive over last 12 months
Only 2 left in stock - order soon.
Shipping rates and Return policy
Loading your book clubs
There was a problem loading your book clubs. Please try again.
Not in a club? Learn more
Amazon book clubs early access

Join or create book clubs

Choose books together

Track your books
Bring your club to Amazon Book Clubs, start a new book club and invite your friends to join, or find a club that’s right for you for free.
Kindle app logo image

Download the free Kindle app and start reading Kindle books instantly on your smartphone, tablet, or computer - no Kindle device required. Learn more

Read instantly on your browser with Kindle for Web.

Using your mobile phone camera - scan the code below and download the Kindle app.

QR code to download the Kindle App

Flip to back Flip to front
Listen Playing... Paused   You're listening to a sample of the Audible audio edition.
Learn more

Follow the Author

Something went wrong. Please try your request again later.

JavaScript: The Definitive Guide: Activate Your Web Pages (Definitive Guides) 6th Edition

4.5 4.5 out of 5 stars 584 ratings

Price
New from Used from
Paperback
$27.90
$27.90 $3.32

Purchase options and add-ons


Amazon First Reads | Editors' picks at exclusive prices

Frequently bought together

$27.90
Get it Jun 16 - 23
Only 1 left in stock - order soon.
Ships from and sold by GreenIceMedia.
+
$14.29
Get it as soon as Wednesday, Jun 14
In Stock.
Ships from and sold by Amazon.com.
Total price:
To see our price, add these items to your cart.
Details
Added to Cart
One of these items ships sooner than the other.
Choose items to buy together.

Editorial Reviews

From the Author

My 10 Favorite Examples from this Book
The 6th edition of
JavaScript: The Definitive Guide includes 125 examples that you can view and download from from examples.oreilly.com/9780596805531/ or from github.com/davidflanagan/javascript6_examples
These are ten of my favorites from the book. Note that many of these use new features of ES5 or of HTML5, and will only work in the newest browsers:
1) Example 1-1 is is an extended example in the first chapter of the book, intended to show readers a simple but non-trivial example of JavaScript. This is the loan calculator example from the last edition, but made much more interesting with the addition of client-side graphics, localStorage, and Ajax.
2) Example 9-7 emulates Java-style enumerated types in JavaScript. It demonstrates that JavaScript's prototype-based inheritance is so flexible that factory methods can be normal object factories or even class factories. That example is a little clearer if you look at the code in Example 9-8.
3) Example 9-16 defines a class hierarchy of abstract and concrete Set classes. This one is a favorite because it involves data types and API design. Chapter 9 includes a number of other Set examples, too.
4) Example 9-23 demonstrates the ES5 Object.defineProperty() method and defines a convenient way to inspect and modify the attributes of the properties of an object. It may not be practical, but I think it is a beautiful hack.
5) Example 15-10 is a simple stream-like API wrapped around the innerHTML property of an element. When you're generating text (a table, for example) for display it is sometimes easier to pass each chunk that you compute to a write() method than it is to concatenate it all together and set it on innerHTML.
6) Example 21-03 is an analog clock implemented as an SVG graphic with scriptable hands. I love client-side graphics, and this is a favorite of mine because making the hands rotate is so simple with SVG transforms.
7) Example 21-06 draws a fractal Koch snowflake using the <canvas> tag. I like it because it draws the same line over and over again, but uses transformations to make the line appear at different locations, orientations and sizes.
8) Example 21-13 is another graphical example: it draws sparklines (edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR). This one is a favorite just because sparklines are so cool.
9) Example 22-1 uses the HTML5 geolocation API to find out where you are then uses the Google Maps API to obtain a static map of your location. I like it because geolocation (via wifi networks) is just pure magic!
10) Example 22-15 is a long example that demonstrates the IndexedDB API. I like it because the idea of a client-side database in a web browser is crazy and cool. This one is really cutting-edge, but if you're running Firefox 4, you can try it out here: davidflanagan.com/demos/zipcodes.html

From the Back Cover

Since 1996, JavaScript: The Definitive Guide has been the bible for JavaScript programmers. With more than 500,000 copies in print, web developers are still raving about it:

  • "A must-have reference for expert JavaScript programmers...well-organized and detailed" -- Brendan Eich, creator of JavaScript, CTO of Mozilla
  • "I made a career of what I learned from JavaScript:The Definitive Guide"--Andrew Hedges, Tapulous
  • "The Definitive Guide taught me JavaScript"--Tom Robinson, cofounder of 280 North, cocreator of Cappuccino
  • "I know which parts of JavaScript matter, based on how crinkled the spine of my copy of The Definitive Guide is in that section"--J. Chris Anderson, cofounder of CoucheBase, Apache CouchDB committer, and author of CouchDB:The Definitive Guide
  • "...an indispensable reference for all JavaScript developers. If there's something I need to know about JavaScript, I trust The Definitive Guide will have the right answer for me. It's that good."--Rey Bango, Microsoft Client-Web Community Program Manager and jQuery Team member.

Product details

  • Publisher ‏ : ‎ O'Reilly Media; 6th edition (May 13, 2011)
  • Language ‏ : ‎ English
  • Paperback ‏ : ‎ 1096 pages
  • ISBN-10 ‏ : ‎ 0596805527
  • ISBN-13 ‏ : ‎ 978-0596805524
  • Item Weight ‏ : ‎ 3.85 pounds
  • Dimensions ‏ : ‎ 7 x 2.4 x 9.19 inches
  • Customer Reviews:
    4.5 4.5 out of 5 stars 584 ratings

About the author

Follow authors to get new release updates, plus improved recommendations.
Brief content visible, double tap to read full content.
Full content visible, double tap to read brief content.

David Flanagan is a computer programmer who has spent much of the last 20 years writing books about programming languages. He now works at Mozilla. David lives with his wife and children in the Pacific Northwest, between the cities of Seattle and Vancouver.

Customer reviews

4.5 out of 5 stars
4.5 out of 5
584 global ratings

Top reviews from the United States

Reviewed in the United States 🇺🇸 on February 24, 2014
7 people found this helpful
Report
Reviewed in the United States 🇺🇸 on July 1, 2012
8 people found this helpful
Report

Top reviews from other countries

Gary Woodfine
5.0 out of 5 stars Probably the best programming book you'll ever buy!
Reviewed in the United Kingdom 🇬🇧 on August 1, 2014
23 people found this helpful
Report
SYED N AUSAF
3.0 out of 5 stars the least bad book in a very large class of bad books on Javascript
Reviewed in the United Kingdom 🇬🇧 on September 8, 2016
6 people found this helpful
Report
Ricky
5.0 out of 5 stars Very detailed and good value for money
Reviewed in the United Kingdom 🇬🇧 on March 31, 2016
Gustav de Damme
5.0 out of 5 stars The ideal book for mastering JavaScript
Reviewed in the United Kingdom 🇬🇧 on November 1, 2018
One person found this helpful
Report
Richard
4.0 out of 5 stars Not Advanced Enough
Reviewed in the United Kingdom 🇬🇧 on January 21, 2021