<html>
<body>
<h1>JavaScript Sets</h1>
<h2>The keys() Method</h2>
<p>The keys() method returns an iterator object with all the values in a set.</p>
<p id="demo"></p>
<script>
// Create a Set
const letters = new Set(["a","b","c"]);
// Get the Values
const myIterator = letters.keys();
// List the Values
let text = "";
for (const x of myIterator) {
text += x + "<br>";
}
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>