Search Results

1
vote

Redundant code constructs

I often run into the following: function foo() { if ( something ) { return; } else { do_something(); } } But it doesn't help telling th …