JSFiddle - React, Tailwind, and code Playground

by sprilukin

JavaScript

var a = {test: 'test'}
var b = a;

b.test = "test2"

console.log(a.test);