第一种方式是直接通过形参调用。
function test(a, b) {
console.log(a + b)
}
test(1, 2)
第二种方式是通过arguments来实现函数参数的调用,需要注意的是arguments数组的长度是由实际传入的参数个数决定,不由定义函数的参数的个数决定。
function test() {
console.log(arguments[0] + arguments[1])
}
test(1, 2)
第一种方式是直接通过形参调用。
function test(a, b) {
console.log(a + b)
}
test(1, 2)
第二种方式是通过arguments来实现函数参数的调用,需要注意的是arguments数组的长度是由实际传入的参数个数决定,不由定义函数的参数的个数决定。
function test() {
console.log(arguments[0] + arguments[1])
}
test(1, 2)