JSFiddle - React, Tailwind, and code Playground
JavaScript
const s1 = Symbol(himike);
const obj = {
a: 1,
b: 2,
[s1]: 3,
c: 4
};
console.log(obj);
console.log(JSON.stringify(obj));
const s1 = Symbol(himike);
const obj = {
a: 1,
b: 2,
[s1]: 3,
c: 4
};
console.log(obj);
console.log(JSON.stringify(obj));