JSFiddle - React, Tailwind, and code Playground

by Alexander

JavaScript

console.clear();


const alpha = ['a','b','c'];
const it = alpha[Symbol.iterator]();

while ({value} = it.next()) {
	console.log( value );
}