/Ugly/ + 'JavaScript'

A place for ugly, silly, or just-plain-crap JavaScript.

Pointless If statement

We’ve all seen this:

if (kRegex.test(value)) {
    return true;
} else {
    return false;
}

Eew.

Beautified:

return kRegex.test(value);
Posted by James on 07 Sep 2011 | linky

Subscribe or follow @UglyJS!
.........
Fork then send a pull request to contribute.