Skip to content

Instantly share code, notes, and snippets.

View itiswicked's full-sized avatar

Nathan Bourke itiswicked

View GitHub Profile

Javascript Basics & Functions

Functions

  • functions are defined with the keyword function
  • Values are returned with the keyword return
    • There are no implicit returns in javascript.
  • function defintions are expressions and objects, and are first class citizens
    • Functions can therefore be passed around like other pieces of data
    • Pass Functions as Arguments