You are reading a single comment by @JumJum and its replies. Click here to read the full conversation.
  • 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);
    
About

Avatar for JumJum @JumJum started