在 Javascript 中,我正在处理一些采用以下形式的 JSON 数据:
o = {
a: null,
b: null,
c: 1,
d: null
// ... 10 or so other properties that are either null or numerical
}
我正在尝试编写一个快速函数来处理整个对象以确定任何键是否有任何非空值。有什么建议可以通过几行代码有效地做到这一点吗?我的项目已经使用了 underscore.js,所以如果这可以加快速度或使其更简洁,那就更好了。