-
JS quirk of the day: you can name blocks (and for-loops): for(var i=0; i<10; i++) outer: { console.log('hi!'); for(var j=0; j<10; i++) inner: { console.log('ho!'); break outer; console.log('it\'s off to work'); } console.log('we go') } What's the result?