Performance Optimization Techniques

What performance consideration does this code demonstrate?
// Before
const obj = {
  name: 'John',
  age: 30,
  // ...
};
delete obj.age;

// After
let obj = {
  name: 'John',
  // ...
};
obj = null; // when done
Next Question (8/20)