JSFiddle - React, Tailwind, and code Playground

by Felipe Alfaro

JavaScript

const original = {
	value1: 100,
    value2: 'hello world'
}

const changes = {
	value1: 101,
    value2: 'hello universe'
}

const detectChanges = (original, changes) => {
	const differences = (() => {
    	if (typeof original === 'object')
    })()
    
	Object.keys()

}