代码:
function tst(a, b) {
var key = [].shift.call(arguments);
console.log(key);
}
tst(1,2); //1
var key = [].shift.call(arguments);这句该如何理解呢?
相关分类