JSFiddle - React, Tailwind, and code Playground
by yshrkn
JavaScript
const iterable = new Map([["a", 1], ["b", 2], ["c", 3]]);
for (const [key, value] of iterable) {
console.log(value);
}
by yshrkn
const iterable = new Map([["a", 1], ["b", 2], ["c", 3]]);
for (const [key, value] of iterable) {
console.log(value);
}