Closed cgarvis closed 12 years ago
Thanks. It's kind of stupid though that jslint doesn't like one-liners if(test) do_stuff(); I think it is way clearer than :
if(test) do_stuff();
if (test) { do_stuff(); }
Thanks. It's kind of stupid though that jslint doesn't like one-liners
if(test) do_stuff();
I think it is way clearer than :