运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <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>