I'm currently having some strange behaviour when using Float32Array on different browsers.
On Chrome (Windows), these are the results of my tests :
const a = new Float32Array(0)
Symbol.iterator in Object(a) => returns true
On Chrome (Android), these are the results of my tests:
const a = new Float32Array(0)
Symbol.iterator in Object(a) => returns false
How is this even possible? The results are opposite so I can't even test the rest of the application correctly.
The 2 devices are running on the latest version of Chrome