JSFiddle - React, Tailwind, and code Playground

by Michael Keller

JavaScript

/* Example showing how changing properties of objects modifies original object */

var settings = {
    tables:{
        t1:{
            name: "t1"
        }
    }
}

t = settings.tables.t1;

t.name = "t2";

console.log(settings);