So, I have the following code:
a = new Float64Array([num])
b = new Uint8Array(a.buffer)
I noticed that the elements of b are little endian and represents the Float64 number using IEEE754.
Is this representation standardized and the same in every browser/js-engine? Or will it change from a browser to other?
Only the behavior is standardized, not the representation.