Test name | Executions per second |
---|---|
Using Object keys and modifying the original object | 3548374.0 Ops/sec |
Using spread to merge objects | 734079.1 Ops/sec |
Manually editing every single property (Wanna have this to prove why sometimes there is a manual assign for each property required) | 155488528.0 Ops/sec |
var voucher = {
"single": false,
"applyOverTaxes": false,
"discountType": "1",
"value": 100,
"minimumAmount": 0,
"quantity": 1,
"suffixLength": 8,
"code": "IF5R0AFX",
"vertical": [],
"allowedPaymentMethods": [],
"allowedBanks": [],
"types": [],
"partners": [],
"startDate": "2020-10-21T00:00:00.000Z",
"endDate": "2020-10-21T00:00:00.000Z",
"applyed": false
}
var voucherQuantityAndPriceUpdated = {
value: 120,
quantity: 10
}
const keysOfObjectWithUpdatedData = Object.keys(voucherQuantityAndPriceUpdated)
for (key of keysOfObjectWithUpdatedData) {
const updatedPropertyValue =
voucher[key] = voucherQuantityAndPriceUpdated[key]
}
const voucherUpdated = {
voucher,
voucherQuantityAndPriceUpdated
}
voucher.value = voucherQuantityAndPriceUpdated.value
voucher.quantity = voucherQuantityAndPriceUpdated.quantity