Skip to content

Instantly share code, notes, and snippets.

@basarat
Created June 23, 2016 10:08
Show Gist options
  • Save basarat/fd21b4c6daa4bd1799ef5337cda69fd1 to your computer and use it in GitHub Desktop.
Save basarat/fd21b4c6daa4bd1799ef5337cda69fd1 to your computer and use it in GitHub Desktop.
/**
* Called if a parameter is missing and
* the default value is evaluated.
*/
function mandatory() {
throw new Error('Missing parameter');
}
function foo(mustBeProvided = mandatory()) {
return mustBeProvided;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment