bitwise operator vs. boolean logic when using TypedArrays (version: 2)
Bitwise operators are slow in javascript because there is implicit type conversion between floats and ints. If we use TypedArrays though, javascript engines shouldn't have to convert. But do they? This test is here to find out.
We'll also check to see whether conversion is performed between another int-like datatypes, Uint32
Comparing performance of:bitwise operator on Int32Array vs boolean operator on Int32Array vs boolean operator with comparitors on Int32Array vs bitwise operator on Float32Array vs bitwise operator on Uint32Array vs boolean operator on Uint32Array vs boolean operator on Uint32Array with comparators