After this code runs, why does obj likely have a SLOWER property access pattern than a plain object with the same keys?const obj = { a: 1, b: 2, c: 3 }; delete obj.b; // later: hot loop reading obj.a and obj.c