What would be smaller in memory size between:
[true,true,true,true,true,true,true,true,true,true]
and
new Int8Array(1,1,1,1,1,1,1,1,1,1)
?
Considering regular arrays can contain anything, each slot must have a size of 32 bits while the Int8Array would be 8 bit each. Is that right?