function getAge(...args) { console.log(typeof args);}getAge(21);A: "number"B: "array"C: "object"D: "NaN"参考答案: