Espruino/tests/test_for_loop_break_2.js
2014-10-09 09:30:28 +01:00

4 lines
56 B
JavaScript

for(var i=0; i<10; i++) if(i==3)break;
result = i==3;