Do’s and Don’ts..
Do this:
if (a == b) {
doSomething();
} else {
doSomethingElse();
}
Do NOT do this:
if (a == b)
{
doSomething();
}
else
{
doSomethingElse();
}
or for the LOVE OF GOD, do NOT do this:
if (a == b)
doSomething();
else
doSomethingElse();
Got it? Good. Failure to comply may result in personal loss of limb.
Comments
Leave a Reply


































