for ( i--) in javascript code example
Example 1: for in javascript
for (let i = start; i < end; i++) {
}
Example 2: for in and for of in js
let iterable = new Map([["a", 1], ["b", 2], ["c", 3]]);
for (let entry of iterable) {
console.log(entry);
}
// [a, 1]
// [b, 2]
// [c, 3]
for (let [key, value] of iterable) {
console.log(value);
}
// 1
// 2
// 3