运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 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([ ["apples", 500], ["bananas", 300], ["oranges", 200] ]); fruits.set("apples", 200); let numb = fruits.get("apples"); document.getElementById("demo").innerHTML = "There are " + numb + " apples."; </script> </body> </html>