JSFiddle - React, Tailwind, and code Playground

by Karl Hui

JavaScript

//core of understanding JSON is understanding objects and data structure
//{variables} 
var myVariable = {};
myVariable.someValue = "foobar";
console.log(myVariable.someValue);
myVariable.someValue === "foobar"