Test name | Executions per second |
---|---|
native delete | 5236534.0 Ops/sec |
omit | 985263.8 Ops/sec |
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
const obj = {
test: 1,
test2: 2
}
const obj = {
test: 1,
test2: 2
}
delete obj.test
const obj = {
test: 1,
test2: 2
}
_.omit(obj,['test'])