Just updated to actual firmware and got problems (function undefined) I'm pretty sure it worked fine with older version of firmware.
function xyz(){ var me = this; me.foo = foo; function foo(){} }
After changing sequence it worked fine as before
function xyz(){ var me = this; function foo(){} me.foo = foo; }
@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 updated to actual firmware and got problems (function undefined)
I'm pretty sure it worked fine with older version of firmware.
After changing sequence it worked fine as before