Great - glad it helped!
When you used break and continue, did you not get an error? For example if I do:
function j() { "jit"; for (var i=0;i<10;i++) { print("Hi",i); continue; } }
It says:
JIT SyntaxError: Got continue expected EOF at line 1 col 42 function j(){"jit";for(var i=0;i<10;i++){print("Hi",i);continue;}}
@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.
Great - glad it helped!
When you used break and continue, did you not get an error? For example if I do:
It says: