JSFiddle - React, Tailwind, and code Playground

by Shang-De You

JavaScript

var object = {
	a: 'a'
}

var another = object

another.a = 'b'

console.log(object)