摘要: 有条件地向对象添加属性 使用展开运算符号(...)来有条件地向对象快速添加属性 const condition = true; const person = { id: 1, name: 'John Doe', ...(condition && { age: 16 }), }; 如果每个操作数的值都 阅读全文
posted @ 2021-12-28 12:30 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑