x
1
2
<html>
3
<body>
4
5
<h2>JavaScript For/Of Loop</h2>
6
<script>
7
const iterable = new Map([['a', 1], ['b', 2], ['c', 3]]);
8
9
for (const entry of iterable) {
10
console.log(entry);
11
}
12
/* out put */
13
/* ['a', 1] */
14
/* ['b', 2] */
15
/* ['c', 3] *
16
17
for (const [key, value] of iterable) {
18
console.log(value);
19
}
20
/* out put */
21
/* 1 */
22
/* 2 */
23
/* 3 */
24
</script>
25
26
</body>
27
</html>