JSFiddle - React, Tailwind, and code Playground

by gmcalab

JavaScript

$(document).ready(function() {
    var WEIGHT_KEY = 'weight';

    var person = {
        name: 'Ryan',
        WEIGHT_KEY: 350
    };

    var weight = person.WEIGHT_KEY;
    
    alert(person.name);
});