Just tested typeof for typed arrays in browser and on Espruino. Browser returns object and Espruino returns questionmark
var x = new Array(2,3,4,5); var t = new Uint8Array([1, 2, 3, 4]) console.log(typeof x,typeof t);
@JumJum started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Just tested typeof for typed arrays in browser and on Espruino.
Browser returns object and Espruino returns questionmark