JSFiddle - React, Tailwind, and code Playground
by keemor
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.1/dojo/resources/dojo.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/dojo/1.8.1/dijit/themes/claro/claro.css">
JavaScript
require([], function() {
"use strict";
const obj = {
'a': 1,
'b': 2,
'c': 3
};
const {a, b, c} = obj;
alert(`a: ${a}`)
});