Skip to content

Instantly share code, notes, and snippets.

@jardix22
Created June 20, 2017 14:47
Show Gist options
  • Save jardix22/37b231882b1420cc0f3dbf4462c76e88 to your computer and use it in GitHub Desktop.
Save jardix22/37b231882b1420cc0f3dbf4462c76e88 to your computer and use it in GitHub Desktop.
Impure and pure functions
// Impure function
const b = 10
const impureFunction = (a) => {
return a + b;
}
impureFunction(4)
// Pure function
const pureFunction = (a, b) => {
return a + b;
}
pureFunction(1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment