JSFiddle - React, Tailwind, and code Playground
JavaScript
const o = {
a: [],
bo: true,
d: new Date(),
f: function () { return 0; },
num: 1.23,
nul: null,
o: {},
s: "a",
u: undefined,
};
const
console.log(JSON.stringify(o, null, 2));