JS 剩余参数

例子

function test(name, age, ...args) {
    console.log(name);
    console.log(age);
    console.log(args[0]);
}

test('huang', 13);
test('huang', 13, 'kk');
test('huang', 13, 'kk', 'bb');

上述函数调用会依次打印什么?

'huang', 13, undefined
'huang', 13, 'kk'
'huang', 13, 'kk'

函数test中的...args参数是剩余参数,它将没有与形参对应上的实参保存到一个名为args的数组中。

详见:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/Rest_parameters

你可能感兴趣的:(JS 剩余参数)