๐พarr.isEmpty
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
JS โฉ object โฉ built-in โฉ Array โฉ custom properties โฉ .isEmpty
// ๐ธ arr.isEmpty
Object.defineProperty(Array.prototype, 'isEmpty', {
get() { return this.length === 0 },
});