0

I came across a javascript code which had a for loop as follows :

for (d = 0; d < c / 8; d++)

0 === (d & 3) && (e = a[d / 4]), b += String.fromCharCode(e >>> 24), e <<= 8;

What does this mean -> 0 === (d & 3) && (e = a[d / 4])

And does the comma have any special role here or is it simply used to convert both the statements separated by it as one. Can anyone please explain this to me ...

deceze
  • 471,072
  • 76
  • 664
  • 811

0 Answers0