Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 554 Bytes

collections.md

File metadata and controls

9 lines (7 loc) · 554 Bytes

Collections

Array Map Set
push(value) / unshift(value) set(key, value) add(value)
length size size
delete array[index] delete(key) delete(value)
find(...) or findIndex(...) has(key) has(value)