JSFiddle - React, Tailwind, and code Playground

by Mike Jacobson

JavaScript

const s1 = Symbol(himike);
const obj = {
a: 1,
b: 2,
[s1]: 3,
c: 4
};

console.log(obj);
console.log(JSON.stringify(obj));