I tried to search for good resources on empty statement, but it seem like nothing show up. Even on MDN, they don't have much to say about it.
i.e:
for(var i = 0; i < a.length; a[i++] = 0);
if((a==0) || (b == 0));
I would like to know what are some real examples that one should use empty statements on their project. What are the reason behind it?