运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Maps</h1> <h2>The set() Method</h2> <p id="demo"></p> <script> // Create a Map const fruits = new Map(); // Set Map Values fruits.set("apples", 500); fruits.set("bananas", 300); fruits.set("oranges", 200); let numb = fruits.get("apples"); document.getElementById("demo").innerHTML = "There are " + numb + " apples."; </script> </body> </html>