當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
在JavaScript中使用示例继续语句
生活随笔
收集整理的這篇文章主要介紹了
在JavaScript中使用示例继续语句
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
JavaScript繼續聲明 (JavaScript continue statement)
continue is a keyword in JavaScript, it is used with the looping statements to continue the loop's iteration.
continue是JavaScript中的關鍵字,它與循環語句一起使用以繼續循環的迭代。
When a continue statement executes, it breakouts the current loop's iteration and continues to the next loop's iteration.
當執行continue語句時 ,它將中斷當前循環的迭代,并繼續進行下一個循環的迭代。
Syntax:
句法:
continue;JavaScript中的continue語句示例 (Example of continue statement in JavaScript)
<html> <head><title>JavaScipt Example</title></head><body> <script>var loop = 1;//continues when value of loop is 7for(loop=1; loop<=10; loop++){if(loop==7)continue;document.write(loop + " ");}document.write("<br>");document.write("Outside of the loop<br>"); </script> </body> </html>Output
輸出量
1 2 3 4 5 6 8 9 10 Outside of the loop翻譯自: https://www.includehelp.com/code-snippets/continue-statement-with-example-in-javascript.aspx
總結
以上是生活随笔為你收集整理的在JavaScript中使用示例继续语句的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用python学线性代数_最简单的神经
- 下一篇: 不干胶多少钱啊?