Ebook JavaScript: The Good Parts
Currently, you could recognize well that this publication is mostly suggested not only for the viewers who enjoy this subject. This is likewise advertised for all individuals as well as public form culture. It will certainly not limit you to read or otherwise the book. But, when you have actually started or begun to check out DDD, you will certainly understand why exactly the book will offer you al positive things.

JavaScript: The Good Parts
Ebook JavaScript: The Good Parts
Do not alter your mind when you are beginning to plan to have analysis practice. This behavior is a great and great habit. You need to enliven it with the very best publications. Numerous books reveal and also offer there unbelievable material based on each styles and subjects. Also each book has different preference of composing; they will certainly offer better condition when checked out quite possibly. This is just what makes us happily existing JavaScript: The Good Parts as one of the books to review currently.
Reading JavaScript: The Good Parts is a quite helpful interest and also doing that could be gone through any time. It means that checking out a publication will not limit your activity, will not compel the time to invest over, as well as won't spend much cash. It is an extremely inexpensive as well as reachable thing to buy JavaScript: The Good Parts But, with that extremely inexpensive thing, you could obtain something brand-new, JavaScript: The Good Parts something that you never ever do and also enter your life.
Connected to this JavaScript: The Good Parts, you could get it here directly. This book is one of the collections in this online library to read conveniently. With the innovative innovation, we will show you why this publication is referred. It is kind of entirely upgraded publication with great heading of the text and also examples. Some workout as well as applications are presented that will certainly make you really feel much more creative. Associated with this instance, this book is used to make the right selection of analysis materials.
Lots of people may have different need to read some publications. For this publication is likewise being that so. You might discover that your reasons are different with others. Some may read this publication for their due date responsibilities. Some will review it to improve the expertise. So, what kind of factor of you to read this impressive JavaScript: The Good Parts It will certainly rely on exactly how you stare and think about it. Just get this book now as well as be among the remarkable viewers of this publication.
Book Description
Unearthing the Excellence in JavaScript
Read more
About the Author
Douglas Crockford is a Senior JavaScript Architect at Yahoo!, well known for introducing and maintaining the JSON (JavaScript Object Notation) format. He's a regular speaker at conferences on advanced JavaScript topics, and serves on the ECMAScript committee.
Read more
Product details
Paperback: 176 pages
Publisher: O'Reilly Media; 1st edition (May 2008)
Language: English
ISBN-10: 9780596517748
ISBN-13: 978-0596517748
ASIN: 0596517742
Product Dimensions:
7 x 0.4 x 9.2 inches
Shipping Weight: 11.2 ounces (View shipping rates and policies)
Average Customer Review:
4.3 out of 5 stars
442 customer reviews
Amazon Best Sellers Rank:
#19,478 in Books (See Top 100 in Books)
I love the concept: Javascript is a diamond in the rough. Discard the rough and you will be working with a diamond.I also like the concrete advice: the parts of Javascript to use, the parts to discard, and the parts to beware of.I also like the explanations: how and why the good parts work. But this is where I begin to have reservations about the book. Some of the explanations are incomprehensible because of poor editing. How is it possible that a collection of technology pace-setters (Crockford, O'Reilly, Amazon) can leave numerous "confirmed serious technical mistakes" in their work uncorrected for at least 4 years (I bought it in 2012)?O'Reilly's errata website for this book lists 157 'confirmed' errata, of which 9 are classified as "Serious Technical Mistake." There are also 22 "unconfirmed errata." Most of the confirmed errata were marked as fixed shortly after publication, but at least one of them ("beget") is still in the Kindle edition. O'Reilly helpfully provides downloadable copies of the example code online, but the current version still contains errors that prevent the code from running (mode/node).I keep going back and re-reading this book, so looking past all my wasted time trying to make sense of the errors, I would give a correctly edited edition of this book five stars for the educational insights sprinkled through it. Or maybe not any more. The state of the art has changed. For example, as many one-star reviewers point out, the whole section on Object.create is outdated. This book needs a rewrite.
I'd rate this 5 stars if it were updated to ES6. I used it 10 years ago, but hadn't written JS since then. When a project appeared that's ripe for JS, it was the first book I bought. Most of it is still relevant. It's definitely not a beginner's book, but IMHO should be in every JavaScript developer's library. Some of the content is less relevant, due to "improvements" in JavaScript. I quote "improvements", because most of them are syntactic sugar and the core deficiencies in JS are still there (and possibly more lurking in said "improvements").I can't be sure, but my guess is that adhering to this book's practices has saved me many hours of frustration.
For me this book is perfect.I have a lot of experience developing production applications using C/C++ in the past. I started learning JavaScript and found it easy to get started with. The online tutorials do a good job of exposing the syntax and basic concepts. Javascript is not interpreted C/C++, I found that it more resembled LISP the way it was used. I was definitely confused by the language (what is with all this function within a function stuff?) and I wanted to understand how the language works (literally how it is implemented).Douglas clarified the concepts for me and now I feel more confident understanding how to use JavaScript. Also, he points out some major pitfalls, e.g. understanding how Arrays work is key to using them.This book is NOT for beginners to programming.This book is very opinionated on what the core language constructs are and how to use them and avoid the other parts.This book is small but quite dense. I must have re-read some sections 5-6 times along with gathering other sources and running through some online examples. Probably depends on your background and level of experience with JavaScript but the concepts were pretty new to me.Chapters 4&5 really get to the meat of JavaScript.The book is an excellent reference and recommend owning it if you want to do serious programming with JavaScript.Also, you can find Crockford on youtube quite easily. I went through his excellent series here: https://www.youtube.com/watch?v=JxAXlJEmNMg&list=PL7664379246A246CBEnjoy!Update: Note: I have purchased 3 O'Reilly books in the last couple of months. Each one of them has literally fallen apart. I will be reading a page and the page will come out of the binding. I am fairly gentle on the books so I think there is a binding problem at O'Reilly.
The average person, who uses javascript minimally like a person who doesn't want to have a nervous breakdown when dealing with scripting languages, probably won't need much that's in here. You could probably just toss your code into jsLint and be done with it. But, if you need to write complex interfaces and do a lot of calculations and treat JS as if it were an object oriented language, this is practically a must-read. Honestly, it has a lot of nice tips and ideas that let you know how javascript works that go really deep with it. I've had to write pages and pages of javascript for this project I've been working with and having read this has made my work go a lot smoother. Now if only I could get my co-workers to read it...The most important things I've gotten out of this were a solid understanding of how javascript's 'this' works, and a lot of good tricks for simulating a class object. (could you do it with TypeScript? I mean, yeah, but why go through the effort of making that part of your project when you've got all the tools available already?)
This is a great book for anyone interested in JavaScript. The beginning goes a bit too deep into JS's muddy background but I guess it's somewhat helpful to know about why JS is chock-full of browser discrepancies.My absolute favorite part of this book is the "railroad diamgrams" as they helped my fully understand how JS's syntax works, how and when white space becomes significant, and why things work the way they do (or don't). A++ D.C. ... thanks!
JavaScript: The Good Parts PDF
JavaScript: The Good Parts EPub
JavaScript: The Good Parts Doc
JavaScript: The Good Parts iBooks
JavaScript: The Good Parts rtf
JavaScript: The Good Parts Mobipocket
JavaScript: The Good Parts Kindle

0 komentar:
Posting Komentar