Skip to content

Instantly share code, notes, and snippets.

@basarat
Created June 23, 2016 10:03
Show Gist options
  • Save basarat/1c5424f4a36a430d71280744a8e74acd to your computer and use it in GitHub Desktop.
Save basarat/1c5424f4a36a430d71280744a8e74acd to your computer and use it in GitHub Desktop.
// You don't normally write code like this:
function add() {
return arguments[0] + arguments[1];
}
// You normally write code like:
function add(num1, num2) {
return num1 + num2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment