ES6 break 语句 ES6 do_while 循环 ES6 continue 语句 ES6 break 语句 var i = 1 while(i<= 10) { if (i % 5 == 0) { console.log("The first multiple of 5 between 1 and 10 is : "+i) break //exit the loop if the first multiple is found } i++ } ES6 do_while 循环 ES6 continue 语句