Skip to content

Instantly share code, notes, and snippets.

@Lily-La-Day
Created August 29, 2019 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lily-La-Day/7456efd69c5d0b2292cd5b887adba436 to your computer and use it in GitHub Desktop.
Save Lily-La-Day/7456efd69c5d0b2292cd5b887adba436 to your computer and use it in GitHub Desktop.
Pure Function Example
//pure
const add = (x, y) => x + y
//impure
let x = 2
const add = (y) => { x += y }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment