Is this significantly faster than something like forEach - which should ideally do basically the same thing:
forEach
a = new Uint8Array(1000); a.forEach(callbackFn);
I'd have hoped that they would be quite similar. If not, it's probably something I should look at performance-wise :)
@Gordon 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.
Is this significantly faster than something like
forEach
- which should ideally do basically the same thing:I'd have hoped that they would be quite similar. If not, it's probably something I should look at performance-wise :)