我有一个对象数组,需要查看其中任何一个中是否存在键。这是我现在正在做的事情:
const arr = [{ id: 1, foo: 'bar' }, { id: 2 }] arr.map(o => o.foo && true).includes(true) // true
有没有更好/更被接受的方法来做到这一点?
javascript arrays object ecmascript-6
arrays ×1
ecmascript-6 ×1
javascript ×1
object ×1