Skip to content

Instantly share code, notes, and snippets.

@alastairparagas
Last active August 23, 2018 04:59
Show Gist options
  • Select an option

  • Save alastairparagas/deae8b6e78f2e891f2ad6ba75a871323 to your computer and use it in GitHub Desktop.

Select an option

Save alastairparagas/deae8b6e78f2e891f2ad6ba75a871323 to your computer and use it in GitHub Desktop.
Closure quick example
function intIncrementer(originalNumber) {
let addedOver = originalNumber;
return () => {
return addedOver += 1;
};
}
const tenIncrementer = intIncrementer(10);
tenIncrementer(); // Would give back 11
tenIncrementer(); // Would give back 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment