Skip to content

Instantly share code, notes, and snippets.

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