Skip to content

Instantly share code, notes, and snippets.

@basarat
Created June 23, 2016 09:56
Show Gist options
  • Save basarat/36037f863bcbebcf0fea48366fc4725e to your computer and use it in GitHub Desktop.
Save basarat/36037f863bcbebcf0fea48366fc4725e to your computer and use it in GitHub Desktop.
function foo(mustBeProvided) {
return mustBeProvided;
}
foo(); // ERROR
foo(123); // OKAY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment