if(condition){
stuff
}
This won't work for all cases, but I often enjoy writing it like this:
if(!condition) return;
stuff
Note: if you are NOT minifying your code, the bottom method is probably leaner, but if you ARE minifying, stick with the top method.
No comments:
Post a Comment