函数参数默认值的相关骚操作
场景:利用参数默认值指定一个参数不可省略
function throwIfMissing() {
throw new Error('Missing parameter')
}
function foo(mustBeProvided = throwIfMissing()) {
return mustBeProvided
}
foo()function foo(optional = undefined) { ... }Last updated