x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript Iterating Over a Set</h1>
6
<script>
7
    const lang = new Set(["HTML", "CSS", "Javascript", "jQuery"]);
8
9
    let result = ""
10
    for (const x of lang) {
11
        result += x + "<br>";
12
    }
13
14
    document.write(result);
15
</script>
16
17
</body>
18
</html>