@ExperimentalZeros if you like you can use slice to convert uint8Array to Array
x = new Uint8Array([113, 39]); =new Uint8Array([113, 39]) y = [].slice.call(x); =[ 113, 39 ]
@MaBe 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.
@ExperimentalZeros if you like you can use slice to convert uint8Array to Array