摘要: 1、&& 操作符: 如果每个操作数的值都为 true,则 && 操作符返回最后一个求值表达式。 let a = true; let b = true; console.log(a&&b&&{c:'test'});//{c: "test"} 2、有条件的添加对象: 使用...可以有条件地向对象添加属性 阅读全文
posted @ 2021-10-18 13:43 骚年上天不? 阅读(98) 评论(0) 推荐(0) 编辑