I've a big byte array (4*4096 bytes) containing floats, coming from the serial port. I'd like to convert it to float32 array in Javascript. I'm not really proficient in JS, what I've found is getFloat32 examples and it seems I'd need a for cycle to go through the entire byte buffer, incremented by 4 and convert each step. Is there an easier way (one step) using maybe foreach? Thanks.