JSFiddle - React, Tailwind, and code Playground

by Luiza CICONE

JavaScript

let a = { b: { c: false}};

let c = a.b.c;
a.b.c = true;
console.error(c);
console.error(a.b.c);