Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 725 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 725 Bytes

JavaScript & TypeScript Exercises

JavaScript

Topics:

  • var/let/const
  • nullish coalescing operator (??) and optional chaining operator (?.)
  • spread operator
  • implicit type coercion

Topics:

  • shallow and deep copies explained in a visual format:

    JavaScript-refs-and-copies

  • reduce function

  • Promises and async/await

TypeScript

  • See how TypeScript code gets compiled to JavaScript (see compiled/playground.js)
  • Explore some interesting TypeScript properties.