You Don't Know JS: Scope & Closures (Paperback)
Kyle Simpson
- 出版商: O'Reilly
- 出版日期: 2014-03-24
- 售價: $940
- 貴賓價: 9.5 折 $893
- 語言: 英文
- 頁數: 98
- 裝訂: Paperback
- ISBN: 1449335586
- ISBN-13: 9781449335588
已絕版
買這商品的人也買了...
-
$420$332 -
$420JavaScript for PHP Developers (Paperback)
-
$660CSS3: The Missing Manual, 3/e (Paperback)
-
$1,400$1,330 -
$550$435 -
$1,000$950 -
$1,000$950 -
$1,100$1,045 -
$640$608 -
$490$417 -
$2,250$2,205 -
$390$332 -
$1,000$950 -
$880$695 -
$360$284 -
$480$408 -
$520$442 -
$520$442 -
$1,225$1,164 -
$520$442 -
$580$458 -
$520$442 -
$990Python for Data Analysis: Data Wrangling with Pandas, NumPy, and IPython, 2/e (Paperback)
-
$1,670$1,587 -
$1,090Data Science on the Google Cloud Platform: Implementing End-to-End Real-Time Data Pipelines: From Ingest to Machine Learning
相關主題
商品描述
No matter how much experience you have with JavaScript, odds are you don’t fully understand the language. This concise yet in-depth guide takes you inside scope and closures, two core concepts you need to know to become a more efficient and effective JavaScript programmer. You’ll learn how and why they work, and how an understanding of closures can be a powerful part of your development skillset.
Like other books in the "You Don’t Know JS" series, Scope and Closures dives into trickier parts of the language that many JavaScript programmers simply avoid. Armed with this knowledge, you can achieve true JavaScript mastery.
- Learn about scope, a set of rules to help JavaScript engines locate variables in your code
- Go deeper into nested scope, a series of containers for variables and functions
- Explore function- and block-based scope, “hoisting”, and the patterns and benefits of scope-based hiding
- Discover how to use closures for synchronous and asynchronous tasks, including the creation of JavaScript libraries