JSFiddle - React, Tailwind, and code Playground

by Stefan Zamfira

JavaScript

const defaults = {
	a: 1,
  b: 2,
  c: 3
}

const custom = {
	a: 10,
  test: undefined
}

const x = {...defaults, ...custom.test};
console.log(x)