JSFiddle - React, Tailwind, and code Playground

by yshrkn

JavaScript

var a = "foo",
    b = 42,
    c = {};

// ES6でのショートハンド
var obj = { a, b, c }; // { a: "foo", b: 42, c: {} }
console.log(obj);