Secrets of the JavaScript Ninja, 2nd Edition
جاوا اسکریپت مهم شده است. همیشه این گونه نبوده است، ولی در حال حاضر حقیقت دارد. امروزه جاوا اسکریپت به یکی از مهمترین و پر استفادهترین زبانهای برنامه نویسی تبدیل شده است. از برنامههای وب انتظار میرود که به کاربران تجربه ای از یک رابط کاربری قوی را بدهند و بدون جاوا اسکریپت، احتمالا فقط میتوانند عکسهای بچه گربهها را نشان دهند. بیشتر از همیشه، توسعه دهندگان وب احتیاج به درک زبانی دارند که به برنامههای وب جان میبخشد.
مثل آب پرتقال و صبحانه، جاوا اسکریپت دیگر فقط برای مرورگرها استفاده نمیشود. مدتها پیش این زبان دیوارهای مرورگر را فرو ریزاند و به لطف Node.js در مرورگر ها، دستگاههای رومیزی و از طریق پلتفرم هایی مثل Apache Cordova بر روی موبایلها ، و حتی دستگاههای embedded با استفاده از Espruino و Tessel به کار گرفته شده است.
اگرچه تمرکز بیشتر این کتاب بر روی جاوا اسکریپت اجرایی در مرورگر است ولی اصول زبانی که در این کتاب ارائه میشود، در تمامی جاها قابل اجرا است. واقعا درک مفاهیم و یادگیری راهنماییها و ترفندهای مختلف، شما را تبدیل به توسعه دهندهی بهتری در جاوا اسکریپت می کند.
ویرایش دوم کتاب Secrets of the JavaScript Ninja، برای نشان دادن هر مفهوم و تکنیک اصلی از مثالهای کاربردی و عملی استفاده میکند. این نسخه کاملا تجدید نظر شده و چگونگی ماهر شدن در مفاهیم کلیدی جاوا اسکریپت به مانند functions، closures، objects، prototypes و promises را به شما نشان میدهد. API هایی مثلDOM ، events، timers در این کتاب پوشش داده شده است. Best practice هایی مانند تست کردن، توسعهی cross-browser را همگی از دید شاغلان کار کشتهی جاوا اسکریپت فرا خواهید گرفت.
What’s Inside
• Writing more effective code with functions, objects, and closures
• Learning to avoid JavaScript application pitfalls
• Using regular expressions to write succinct text-processing code
• Managing asynchronous code with promises
• Fully revised to cover concepts from ES6 and ES7
About the Reader
You don’t have to be a ninja to read this book—just be willing to become one. Are you ready?
About the Authors
John Resig is an acknowledged JavaScript authority and the creator of the jQuery library. Bear Bibeault is a web developer and author of the first edition, as well as coauthor of Ajax in Practice, Prototype and Scriptaculous in Action, and jQuery in Action from Manning. Josip Maras is a post-doctoral researcher and teacher.
Table of Contents
Part 1: Warming up
Chapter 1: JavaScript is everywhere
Chapter 2: Building the page at runtime
Part 2: Understanding functions
Chapter 3: First-class functions for the novice: definitions and arguments
Chapter 4: Functions for the journeyman: understanding function invocation
Chapter 5: Functions for the master: closures and scopes
Chapter 6: Functions for the future: generators and promises
Part 3: Digging into objects and fortifying your code
Chapter 7: Object orientation with prototypes
Chapter 8: Controlling access to objects
Chapter 9: Dealing with collections
Chapter 10: Wrangling regular expressions
Chapter 11: Code modularization techniques
Part 4: Browser reconnaissance
Chapter 12: Working the DOM
Chapter 13: Surviving events
Chapter 14: Developing cross-browser strategies
appendix A: Additional ES6 features
appendix B: Arming with testing and debugging
appendix C: Exercise answers