Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
Chrome 85
Windows
Desktop
4 years ago
Test name Executions per second
Map.set undefined 0.8 Ops/sec
Map.delete 1.7 Ops/sec
Tests:
  • Map.set undefined

    AخA
     
    const rs = 1000000;
    const testMap = new Map();
    for (let i = 0; i < rs; i++) {
        testMap.set("i" + i, i);
    }
    for(let i = 0; i < rs; i++) {
      testMap.set("i"+i, undefined);
    }
  • Map.delete

     
    const rs = 1000000;
    const testMap = new Map();
    for (let i = 0; i < rs; i++) {
        testMap.set("i" + i, i);
    }
    for(let i = 0; i < rs; i++) {
      testMap.delete("i"+1);
    }