執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題, 深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Maps</h1> <h2>instanceOf Map</h2> <p id="demo"></p> <script> // Create a Map const fruits = new Map([ ["apples", 500], ["bananas", 300], ["oranges", 200] ]); document.getElementById("demo").innerHTML = fruits instanceof Map; </script> </body> </html>