JSFiddle - React, Tailwind, and code Playground

by lasha

JavaScript

var thing = {
	hey: "hey",
  yo: "yo"
}

var state = {
	category: {
  	hey: 'hey og',
    yo: 'yo og'
  }
}

var newState = {
	...state,
  category: {
  	...state.category,
  	['hey']: 'what'
  }
}

console.log(newState)