📅  最后修改于: 2022-03-11 14:52:03.345000             🧑  作者: Mango
//use continue keyword
while (true) {
//do stuff
if (condition) continue; //goes to the top of while loop
//do other stuff
}