JSFiddle - React, Tailwind, and code Playground
by craigm
JavaScript
var Cart = (function (NS) {
NS.Product = {};
NS.Product.Price = 25;
return NS;
})(Cart || {});
var Cart = (function (NS) {
NS.Catalog = {};
NS.Catalog.Category = 'Books';
return NS;
})(Cart || {});
console.log(Cart.Product.Price);
console.log(Cart.Catalog.Category);