JSFiddle - React, Tailwind, and code Playground

by Shang-De You

JavaScript

var a = {
	a:1,
  b:2
}

var b = a

a.a = 2

console.log(b)