测验 » 可调用值
3. 参数默认值
function foo(x=true, y) {
return [x, y];
}
const result = foo('a', 'b', 'c');
会发生什么?
4. 参数默认值
function foo(x=true, y) {
return [x, y];
}
const result = foo('a', 'b');
会发生什么?
5. 参数默认值
function foo(x=true, y) {
return [x, y];
}
const result = foo('a');
会发生什么?
6. 参数默认值
function foo(x=true, y) {
return [x, y];
}
const result = foo();
会发生什么?
7. 剩余参数
function f(x, ...y) {
return [x, y];
}
const result = f('a', 'b', 'c');
会发生什么?
正确答案0共0