Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望这个大图书馆里有这样的工具。但我找不到它。
题外话:网上有没有很好的 GCL 特性列表?
如果你不是很关心性能,你可以用一点 JSON 魔法来做一个深度的值比较。
function isEqual(objA, objB) { return goog.json.serialize(objA) === goog.json.serialize(objB); }