In JavaScript you can add extra conditions like:
var b = 0.0;
var q = (void 0);
var e = -1.0;
while(q = e, b > 32.0){
console.log(q);
b++;
}
Meaning that q equals to e.
I have tried to rephrase Java code to
Float b = 0.0;
Float q = Float.NaN;
Float e = -1.0;
do{
q = e;
b++;
}while(b < 32.0);
But it seems that it doesn't work as JS version.
Can I just add q = e to while conditions? Is there any valid Java syntax for it?