Showing posts with label functions. Show all posts
Showing posts with label functions. Show all posts
Wednesday, 25 May 2016
Sunday, 22 May 2016
mandatory parameters via parameter default values
function mandatory() {
throw new Error('Missing parameter');
}
function foo(mustBeProvided = mandatory()) {
return mustBeProvided;
}
Subscribe to:
Posts (Atom)