📜  node js函数无限参数 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:03.045000             🧑  作者: Mango

代码示例1
function print(...args) {
  args.forEach((arg, index) => {
    console.log(arg);
  });
}

print('hello', true, new Date());