Skip to content

Instantly share code, notes, and snippets.

@mraleph
Created February 18, 2015 16:52
Show Gist options
  • Save mraleph/d4de27517dcd5427f936 to your computer and use it in GitHub Desktop.
Save mraleph/d4de27517dcd5427f936 to your computer and use it in GitHub Desktop.
function f(x, y) {
x = 'Q: why?';
console.log(arguments[0]);
arguments[1] = 'A: just because';
console.log(y);
}
f(null, null);
// Q: why?
// A: just because
f();
// undefined
// undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment