Map
๐ง under construction
breadcrumb ๐ง
้็ถ Object ่ Map ้ฝๆฏ JS ็จไพๅฏฆ็พ Dictionary ็ๆนๆณ๏ผไฝๅฎๅๅญๅจๅบๆฌ็ไธๅ้ปใ
Maps vs. Objects
feature
Map
Object
โ use [...map] to convert into Array.
โ for(const [key, value] of map){...}
โ for(const key of map.keys()){...}
โ for(const value of map.values()){...}
โ map.forEach((value, key) => {...})
keys
can be any value (including functions, objects, or any primitive).
โ
number of items in a Map
โ no such property
Map โ Array
Other Topics
Last updated
Was this helpful?