You Don't Know JS Yet - 2nd Edition
[作]
Kyle Simpson
更新时间:2020-12-31
This is a series of books diving deep into the core mechanisms of the JavaScript language.
目录
Get Started
- Foreword
- Preface
- Chapter 1: What Is JavaScript?
- Chapter 2: Surveying JS
- Chapter 3: Digging to the Roots of JS
- Chapter 4: The Bigger Picture
- Appendix A: Exploring Further
- Appendix B: Practice, Practice, Practice!
Scope & Closures
- Foreword
- Preface
- Chapter 1: What's the Scope?
- Chapter 2: Illustrating Lexical Scope
- Chapter 3: The Scope Chain
- Chapter 4: Around the Global Scope
- Chapter 5: The (Not So) Secret Lifecycle of Variables
- Chapter 6: Limiting Scope Exposure
- Chapter 7: Using Closures
- Chapter 8: The Module Pattern
- Appendix A: Exploring Further
- Appendix B: Practice