▲ 2 Ways to Remove a Property from an Object in JavaScript at dmitripavlutin.com▼2 up and 0 down, posted by panzerdp 1188 days ago 1 comment
MaxArt 1186 days ago. link 1 point ▲ ▼The second technique doesn't actually remove the property: it creates another object without a property. It's widely used if immutability is a constraint. If you want another proper way, you can use Reflect.deleteProperty.