运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Sets</h1> <h2>The add() Method</h2> <p>The add() method adds values to a set:</p> <p id="demo"></p> <script> // Create a Set const letters = new Set(); // Create Variables const a = "a"; const b = "b"; const c = "c"; // Add Values as Variables to the Set letters.add(a); letters.add(b); letters.add(c); // Display the Size document.getElementById("demo").innerHTML = "The set has " + letters.size + " values."; </script> </body> </html>