Skip to content

Instantly share code, notes, and snippets.

@Cygra
Created April 11, 2019 10:06
Show Gist options
  • Save Cygra/a0f0ffd7a75d0d36c99ca47b0c8c78f7 to your computer and use it in GitHub Desktop.
Save Cygra/a0f0ffd7a75d0d36c99ca47b0c8c78f7 to your computer and use it in GitHub Desktop.
var foo = () => arguments[0];
foo(); // arguments is not defined
function bar() {
return arguments[0];
}
bar(); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment