JSFiddle - React, Tailwind, and code Playground

by Pritesh Patel

JavaScript

const data = undefined;
const updatedData = {};

const newData = {
...data,
...updatedData,

}

console.log("newData: ", newData);