function getAge(...args) {
console.log(typeof args);
}
getAge(21);
扩展运算符(...args
)会返回实参组成的数组。而数组是对象,因此 typeof args
返回 "object"
。
function getAge(...args) {
console.log(typeof args);
}
getAge(21);
扩展运算符(...args
)会返回实参组成的数组。而数组是对象,因此 typeof args
返回 "object"
。