Table of Contents for
Programming TypeScript

Version ebook / Retour

Cover image for bash Cookbook, 2nd Edition Programming TypeScript by Boris Cherny Published by O'Reilly Media, Inc., 2019
  1. nav
  2. Cover
  3. Programming TypeScript
  4. Programming TypeScript
  5. 1. TypeScript: A 10_000 Foot View
  6. 2. All About Types
  7. 3. Functions
  8. Index
  1. 1. TypeScript: A 10_000 Foot View
    1. The Compiler
      1. The Type System
      2. TypeScript vs. JavaScript
      3. IDE Setup
    2. Exercises
  2. 2. All About Types
    1. Talking about types
    2. The ABCs of Types
      1. Any
      2. Unknown
      3. Boolean
      4. Number
      5. String
      6. Symbol
      7. Object
      8. Intermission: Type Aliases, Union & Intersection Types
      9. Array
      10. Tuple
      11. Null, Undefined, Void, and Never
      12. Enum
    3. Summary
    4. Exercises
  3. 3. Functions
    1. Declaring & Invoking Functions
      1. Optional & Default Parameters
      2. Rest Parameters
      3. call, apply, and bind
      4. Generator Functions
      5. Iterators
      6. Function Types
      7. Overloaded Function Types
    2. Polymorphism
    3. Generic Type Inference
    4. Bounded Polymorphism
      1. Using Bounded Polymorphism to Model Arity
    5. Generic Type Defaults
    6. Type Driven Development
    7. Exercises
  4. Index
Back to top