Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 471 Bytes

Map.md

File metadata and controls

27 lines (20 loc) · 471 Bytes

Map

From ES6:

  • Map()
  • Map.prototype.has( key )
  • Map.prototype.get( key )
  • Map.prototype.set( key, value )
  • Map.prototype.delete( key )
  • Map.prototype.keys()
  • Map.prototype.values()
  • Map.prototype.items()
  • Map.prototype.clear()

Note WeakMap is not included because it cannot be polyfilled properly.

On es2pi:

None so far.

See Also: