James Curran
1 min readNov 25, 2015

--

I don’t have a problem with (a lack of) semi-colons specifically, but with ASI.

Due to ASI, one is sometime *required* to use that god-forsaken K&R bracing style. e.g.

function OK()
{ return { status: “OK”;

}

}

works differently than

function OK()
{ return { status: “OK”;

}

}

--

--