JSFiddle - React, Tailwind, and code Playground
JavaScript
// http://daniel.steigerwald.cz (MIT Licensed)
// tohle nikdy nedělejte
Object.prototype.alert = function() {
alert(this);
};
var styles = { color: 'red', height: 20 };
for(var style in styles) {
alert(style + ' ' + styles[style]);
}