Skip to content

Latest commit

 

History

History
39 lines (36 loc) · 889 Bytes

File metadata and controls

39 lines (36 loc) · 889 Bytes

Вы не знаете JS: Типы и грамматика

Содержание

  • Предисловие
  • Введение
  • Глава 1: Типы
    • Тип, как бы он ни назывался...
    • Встроенные типы
    • Значения как типы
  • Chapter 2: Values
    • Arrays
    • Strings
    • Numbers
    • Special Values
    • Value vs Reference
  • Chapter 3: Natives
    • Internal [[Class]]
    • Boxing Wrappers
    • Unboxing
    • Natives as Constructors
  • Chapter 4: Coercion
    • Converting Values
    • Abstract Value Operations
    • Explicit Coercion
    • Implicit Coercion
    • Loose Equals vs Strict Equals
    • Abstract Relational Comparison
  • Chapter 5: Grammar
    • Statements & Expressions
    • Operator Precedence
    • Automatic Semicolons
    • Errors
    • Function Arguments
    • try..finally
    • switch
  • Appendix A: Mixed Environment JavaScript
  • Appendix B: Acknowledgments