Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 271 Bytes

arrow-function.md

File metadata and controls

5 lines (4 loc) · 271 Bytes

Arrow Function

  • Lexical scope - context is determined during code evaluation NOT when it's being executed.
  • No this, arguments.
  • No prototype since prototype methods usually use this to access the instance and this is not available to arrow functions.