JSFiddle - React, Tailwind, and code Playground

by bsorrentino

TypeScript

console.log( 'start' )

const a = { 
	
  p1: 1
  p2: 2
  p3: 3
}


const b = { p1: 0, ...a }

console.log( b )

const b2 = { ...a, p1: 0 }

console.log( b2 )