作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个对象,有时会返回未定义的属性(或 Immutable.map)。
(2) [ map ,未定义]
仅当两个项目都是 map 时,我希望此父对象为 true bool 值。目前,
let hasLocation = Lodash.overEvery(obj.mapData.toArray())
然后再
hasLocation(2)
似乎是最好的选择,但只有当两者都未定义时才返回 true,并且 overEvery
的示例似乎非常薄弱。我在这里缺少什么?
最佳答案
你不需要lodash:
const noUndefineds = hasLocation.every(item => item !== undefined);
如果您知道只有 undefined
才是错误的,您可以缩短为:
const noUndefineds = hasLocation.every(Boolean); // all items are truthy values.
关于javascript - 仅当所有子对象均为 true 时才从对象返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45466065/
我是一名优秀的程序员,十分优秀!