Heim >Web-Frontend >js-Tutorial >Iterierbar – JavaScript-Herausforderungen
Sie finden den gesamten Code in diesem Beitrag im Repo Github.
/** * @param {any} data * @return {object} */ function createCustomIterable(data) { return { [Symbol.iterator]() { let index = 0; return { next() { if (index < data.length) { return { value: data[index++], done: false, }; } else { return { value: undefined, done: true, }; } }, }; }, }; } // Usage example: const customIterable = createCustomIterable([1, 2, 3, 4]); // Using for...of loop for (const item of customIterable) { console.log(item); } /** * 1 * 2 * 3 * 4 */ // Using spread operator const arrayFromIterable = [...customIterable]; console.log(arrayFromIterable); // => [1, 2, 3, 4] // Using Array.from() const anotherArray = Array.from(customIterable); console.log(anotherArray); // => [1, 2, 3, 4]
Das obige ist der detaillierte Inhalt vonIterierbar – JavaScript-Herausforderungen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!