选择篇(008)-下面代码的输出是什么?

72 阅读1分钟
function getAge(...args) {
    console.log(typeof args);
}
getAge(21);
A: "number"
B: "array"
C: "object"
D: "NaN"

参考答案: