JSFiddle - React, Tailwind, and code Playground
JavaScript
function a(options) {
for (var item in options) {
if (!options.hasOwnProperty(item)) {
continue;
}
this[item] = options[item];
}
}
a({
'abc': 'def'
});
//alert(abc);