<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Iterating Over a Set</h1>
<script>
const lang = new Set(["HTML", "CSS", "Javascript", "jQuery"]);
let result = ""
for (const x of lang) {
result += x + "<br>";
}
document.write(result);
</script>
</body>
</html>