search
HomeWeb Front-endJS TutorialDifferences in usage of javascript loop statements while, do-while, for-in, and for_javascript skills

The only difference between the first two is that the order of looping and judgment is different. do-while loops one more time than while, so I won’t give an example.
I believe everyone is familiar with the for loop. Let’s look at the sentence for-in.
This is actually for arrays. The initialization of arrays in js is also quite strange. For example, we write it in the script node: (Also note the initialization of the array, using square brackets)


[Ctrl A Select all Note: If you need to introduce external Js, you need to refresh to execute
]

for in Example 2

[Ctrl A Select all Note:
If you need to introduce external Js, you need to refresh to execute
]
javascrpt for
[Ctrl A Select all Note:
If you need to introduce external Js, you need to refresh to execute
]

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
Explanation:
The step value of the for loop starts from i=0.
As long as i is less than or equal to 5, the loop will continue to run.
Every time the loop loops, i will accumulate by 1.

[Ctrl A Select all Note:
If you need to introduce external Js, you need to refresh to execute
]

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
Explanation:
i is equal to 0.
The loop will run first.
Each time through the loop, i will accumulate by 1. javascrpt while


[Ctrl A Select all Note:
If you need to introduce external Js, you need to refresh to execute
]

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
Explanation:
i is equal to 0. The loop will continue running when i is less than or equal to 5. Every time the loop runs, i will accumulate by 1. Javascript sample code explanation: This Javascript sample uses the do...while loop statement. The loop statement allows one or several lines of code to be repeatedly executed. do is followed by the code for repeated execution, and while is followed by the condition for terminating the loop. In this Javascript example, let a variable be i, the initial value of i is 0, i means that the value of i will be increased by 1 after each repeated execution, and the loop termination condition is while (i From the above examples we can see the difference between js for, for in, while, do while.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何解决Python的循环语句错误?如何解决Python的循环语句错误?Jun 25, 2023 am 10:15 AM

Python循环语句非常基础但也非常重要,可以用它来反复执行一段代码,直到满足某个条件为止。Python中常用的循环语句有for循环和while循环。尽管循环语句非常简单,但在编写代码时还是会遇到各种循环错误。在本文中,我将讨论几个常见的循环错误及其解决方法。一.语言错误检查拼写错误以及符号错误,如缺少冒号和括号。在Python中,这些错误

C++中的循环语句详解C++中的循环语句详解Aug 22, 2023 am 11:52 AM

C++是一种高效的编程语言,具备强大的功能和广泛的应用范围。其中循环语句是C++中最重要的部分之一,C++中提供了几种循环语句来使程序员可以更方便地对数据进行迭代操作。本文将详细介绍C++中的循环语句。一、for循环for循环是一种迭代语句,可以让程序员轻松地重复执行一个指定的操作。for循环的基本语法如下:for(initialization;condi

java有哪些循环语句java有哪些循环语句Jun 21, 2023 pm 03:42 PM

Java的循环语句:1、while循环,语法为“while(布尔表达式){循环体;}”,当条件为true时执行循环体;2、do-while循环,语法为“do{循环体;}while(布尔表达式);”,即使不满足条件也至少会执行一次;3、for循环,语法为“for(表达式1; 表达式2; 表达式3){循环体;}”;表达式1是给变量赋值,表达式2是循环条件,表达式3是改变变量的值。

如何使用C++中的循环语句函数?如何使用C++中的循环语句函数?Nov 18, 2023 pm 05:13 PM

如何使用C++中的循环语句函数?C++是一种面向对象的编程语言,它具有强大的循环语句函数,这些函数可以帮助开发人员更加有效地执行重复的任务。循环语句函数可以在代码中创建一个循环,让同一段代码重复执行多次,从而简化编程过程并提高代码的可读性。在C++中,我们使用循环语句函数来执行不同类型的循环,包括for循环、while循环和do-while循环。不同的循环类

如何在Python中使用循环语句?如何在Python中使用循环语句?Jun 03, 2023 pm 08:51 PM

Python是一种高级编程语言,被广泛应用于数据科学、人工智能、Web开发和自动化等领域。循环语句是Python编程中最基本的控制结构之一,它允许程序重复执行一个代码块,直到满足终止条件为止。在本文中我们将介绍Python中的两种循环语句-for循环和while循环,并提供一些实例来演示其用法。一、for循环语句Python中的for循环语句用于遍历一

如何在PHP编程中使用循环结构?如何在PHP编程中使用循环结构?Jun 12, 2023 pm 01:09 PM

在PHP编程中,循环结构是非常重要的一种控制流结构。通过循环结构,我们可以让代码重复执行特定的代码块,该代码块可以是一句语句或一组语句。循环结构可以让我们用更少的代码解决一些重复的任务,并且可以减少代码逻辑错误的出现。本文将介绍在PHP编程中如何使用循环结构。for循环for循环是在PHP编程中使用最多的循环结构之一。顾名思义,for循环是在一定范围内循环执

学会使用Golang中的条件和循环语句学会使用Golang中的条件和循环语句Dec 23, 2023 pm 01:19 PM

掌握Golang中的条件语句和循环语句,需要具体代码示例在Golang中,条件语句和循环语句是程序中非常重要的一部分。条件语句用来决定程序的执行流程,而循环语句用来重复执行一段代码。本文将详细介绍Golang中的条件语句和循环语句,并提供具体的代码示例。条件语句条件语句用来根据条件的真假来执行不同的代码块。在Golang中,条件语句包括if语句、if-els

PHP入门指南:循环语句PHP入门指南:循环语句May 20, 2023 am 08:21 AM

PHP是一种广泛使用的编程语言,用于Web开发及其他许多领域。掌握PHP中的循环语句是成为优秀开发者的关键之一。在本文中,我们将讨论PHP的循环语句,包括for循环语句、while循环语句、和do-while循环语句。for循环语句for循环语句是PHP中最常用的循环语句之一。它可以执行一系列的代码,直到满足指定条件后停止。for循环由初始化表达式、条件表达

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software