JSFiddle - React, Tailwind, and code Playground

by Sergei Marochkin

JavaScript

const test = {
	asd: 123,
	ddd: {
  	qq: 666,
	},
};
console.log(test);


const test2 = { ...test };
console.log(test2);


test2.asd = 111;
console.log('test', test);
console.log('test2', test2);


test2.ddd.qq  = 333;
console.log('test', test);
console.log('test2', test2);