最佳答案
确定 javascript 对象中的所有属性是 null 还是空字符串的最佳方法是什么?它应该适用于任意数量的属性。
{'a':null, 'b':''} //should return true for this object
{'a':1, 'b':''} //should return false for this object
{'a':0, 'b':1} //should return false
{'a':'', 'b':''} //should return true