Skip to content

Latest commit

 

History

History
122 lines (121 loc) · 2.37 KB

JavaScript.md

File metadata and controls

122 lines (121 loc) · 2.37 KB

JavaScript

  • Language
    • Object 🖐️ used
    • Function 🖐️ used
    • Boolean 🖐️ used
    • Number 🖐️ used
    • BigInt
    • String 🖐️ used
    • Symbol 🖐️ used
    • Infinity
    • NaN
    • undefined 🎓 known
    • null 👂 heard
    • this 🎓 known
    • instanceof
    • ...spread
    • ...rest 🎓 known
    • typeof 🖐️ used
    • Destructuring
    • Generators
    • Iterators 🖐️ used
    • Async generator
    • Async iterator 👂 heard
    • Chaining
    • Optional chaining
    • IIFE
    • Async IIFE
    • global
    • globalThis
    • window
    • Getters and setters
    • __proto__
    • prototype
    • Equality operators
    • Logical operators
    • Logical Assignment
    • Bitwise operators
    • Ternary operator 🎓 known
    • void 👂 heard
    • yield
    • await
    • Template literal
    • Strict mode
    • Hoisting
    • delete👂 heard
    • in
    • super
    • eval
    • static👂 heard
    • Number.parseInt
    • Number.parseFloat
    • Property descriptors
    • Sealing properties 🎓 known
    • Freezing properties
    • Computed properties
    • Instance class fields
    • Static class fields
    • Private class fields
    • Private class methods
  • Statements
    • if 🖐️ used
    • while 🖐️ used
    • do..while 🖐️ used
    • for 🖐️ used
    • for..in 🖐️ used
    • for..of 🖐️ used
    • for await 🖐️ used
    • throw 🎓 known
    • break 🎓 known
    • continue 👂 heard
    • import 👂 heard
    • export
    • label
    • try..catch 🖐️ used
    • switch
    • class 👂 heard
    • extends
    • with 👂 heard
    • new 👂 heard
  • Functions
    • Arrow function
    • Async function 🎓 known
    • Function declaration
    • Function expression
    • Default parameters
    • Functional object
    • Function.prototype.call
    • Function.prototype.bind
    • Function.prototype.apply
    • return
  • Data structures
    • Array 🖐️ used
    • Map 🖐️ used
    • Set
    • WeakMap
    • WeakSet
    • Typed arrays
    • Mixins
    • Object.assign👂 heard
  • Standard classes and namespaces
    • Proxy
    • RegExp
    • Date 🖐️ used
    • Math 🎓 known
    • Reflect
    • Error 🎓 known
    • Atomics
    • JSON 🎓 known
    • WeakRef
    • FinalizationRegistry
    • Intl
    • Promise
    • console 🖐️ used
    • Timers
  • Infrastructure
    • V8
    • Node.js 👂 heard
    • npm
    • prettier
    • MDN
    • TC39