外觀
禁止未使用的標籤
宣告但未在程式碼中任何地方使用的標籤,很可能是由於不完整的重構而造成的錯誤。
OUTER_LOOP: for (const student of students) { if (checkScores(student.scores)) { continue; } doSomething(student); }