JSFiddle - React, Tailwind, and code Playground
by kmendes
JavaScript
var myObject = {
a: 'foo',
b: 'success', //trailing comma!!!
}
document.write(myObject.b);
// Most browsers => success
// IE7 => Expected identifier, string or number
by kmendes
var myObject = {
a: 'foo',
b: 'success', //trailing comma!!!
}
document.write(myObject.b);
// Most browsers => success
// IE7 => Expected identifier, string or number