JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.js"></script>
JavaScript
let defaultValues = {code: '', price: 0, description: ''}
let product = {code: 'MyCode', price: null, description: 'Product Description'}
//I merge these two objects
let merged = _.mergeWith(
{}, defaultValues, product,
(a, b) => b === null ? a : undefined
)
console.log(merged)