x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript entries() Method</h1>
6
<script>
7
    const lang = new Map([
8
        ["HTML", 90],
9
        ["CSS",  80],
10
        ["Javascript", 70]
11
    ]);
12
13
    let result = ""
14
    for(const z of lang.entries()){
15
        result += z + "<br>"
16
    }
17
18
    document.write(result);
19
</script>
20
21
</body>
22
</html>