代码:function tst(a, b) { var key = [].shift.call(arguments); console.log(key);}tst(1,2); //1var key = [].shift.call(arguments);这句该如何理解呢? 查看完整描述