💾obj.isIterable

JSiterationiterableextension ⟩ obj.isIterable

Object.defineProperties(Object.prototype, {
    // ⭐️ obj.isIterable
    isIterable: {
        get() {
            // ⭐️ code copied from the chat bot "chatGPT"
            return typeof this[Symbol.iterator] === 'function';
        }
    },
}

Last updated

Was this helpful?