Skip to content

输出是什么?

Posted on:2021年7月3日 at 22:09
function getAge(...args) {
  console.log(typeof args);
}

getAge(21);

扩展运算符(...args)会返回实参组成的数组。而数组是对象,因此 typeof args 返回 "object"

原文转自:https://fe.ecool.fun/topic/2dec0eee-6b2c-4d4a-920b-6acef97924b7