Skip to content

Instantly share code, notes, and snippets.

@yarax
Last active April 6, 2016 08:04
Show Gist options
  • Save yarax/66530a49a22dd4e2eb0871f851e3c314 to your computer and use it in GitHub Desktop.
Save yarax/66530a49a22dd4e2eb0871f851e3c314 to your computer and use it in GitHub Desktop.
let x = 1;
let sum = (a, b) => a + b + x
sum(1, 2); // 4
x = 2;
sum(1, 2); // 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment