Named block if statement
by MegaScience
JavaScript
function testStuff() {
const l = console.log
l([].join(',') || '-')
l('Start')
if(l) test: {
l('Inside')
break test
l('After')
}
l('Outside')
}
testStuff()
by MegaScience
function testStuff() {
const l = console.log
l([].join(',') || '-')
l('Start')
if(l) test: {
l('Inside')
break test
l('After')
}
l('Outside')
}
testStuff()