标签语句

375 阅读1分钟

标签语句用于给语句添加标签

常用场景:跳出嵌套循环

例子:

start:for(let i = 0 ; i < 5 ; i++){
	if(i%3===0){
		break start;
	}
}