Time: 50 ms (68.94%), Space: 50.5 MB (14.65%) - LeetHub

This commit is contained in:
Deven
2024-11-25 14:18:00 -05:00
parent 1376fbe083
commit 166e8a5c70
@@ -0,0 +1,8 @@
/**
* @param {Object|Array} obj
* @return {boolean}
*/
var isEmpty = function(obj) {
let s = JSON.stringify(obj)
return s === "[]" || s === "{}" || s === ""
};