💾obj.isIterable

JSiterationiterableextension ⟩ obj.isIterable

check if an object is iterable.

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

Last updated