标签: javascript
是否可以根据两个JS对象的属性比较它们的值?
例如:
var first = { a: 2, b: 3 } var second = { a: 4, b: 5 } console.log(first.hasPropertiesOf(second)); //true