JSFiddle - React, Tailwind, and code Playground
JavaScript
const defaults = {
a: 1,
b: 2,
c: 3
}
const custom = {
a: 10,
test: undefined
}
const x = {...defaults, ...custom.test};
console.log(x)
const defaults = {
a: 1,
b: 2,
c: 3
}
const custom = {
a: 10,
test: undefined
}
const x = {...defaults, ...custom.test};
console.log(x)