JavaScript Essentials:如何为循环而烦恼

by Zell Liew

由Zell Liew

JavaScript Essentials:如何为循环而烦恼 (JavaScript Essentials: how to wrap your head around for loops)

Let’s say you want to run a function, bounceBall, four times. How would you do it? Like this?

假设您要运行一次功能bounceBall四次。 你会怎么做? 像这样?

function bounceBall() {   // bounce the ball here }
bounceBall() bounceBall() bounceBall() bounceBall()

This approach is great if you need to bounceBall only for a few times. What happens if you need to bounceBall for a hundred times?

如果只需要bounceBall则此方法非常bounceBall 。 如果您需要bounceBall一百次球怎么办?

The better way is through a for loop.

更好的方法是通过for循环。

“ for”循环 (The ‘for’ loop)

The for loop runs a block of code as many times as you want to. Here’s a for loop that runs bounceBall ten times:

for循环可以运行一块代码多次。 这是一个运行bounceBall十次的for循环:

for (let i = 0; i < 10; i++) {   bounceBall() }

It’s broken down into four parts — the initialExpression, the condition, the incrementalExpression , and the statement:

它分为四个部分initialExpressionconditionincrementalExpressionstatement

for (initialExpression; condition; incrementExpression) {   statement }

Before you loop, you need to have a statement. This statement is the block of code you’d like to run multiple times. You can write any number of lines of code here. You can even use functions.

在循环之前,您需要有一条声明 。 该语句是您希望多次运行的代码块。 您可以在此处编写任意多行代码。 您甚至可以使用功能。

Here’s what the for loop looks like with bounceBall as its statement:

这是使用bounceBall作为语句的for循环的样子:

for (initialExpression; condition; incrementExpression) {     bounceBall() }

Next, you need an initial expression to begin a loop. This is where you declare a variable. For most loops, this variable is called i. It’s also set to 0.

接下来,您需要一个初始表达式来开始循环。 在这里声明变量。 对于大多数循环,此变量称为i 。 也设置为0。

Here’s how it’ll look like when you put the initialExpression into the for loop:

当您将initialExpression放入for循环时,它的外观如下:

for (let i = 0; condition; incrementExpression) {   bounceBall() }

After the statement runs, the variable, i is increased or decreased. You increase or decrease the value of i in the increment expression.

语句运行后,变量i增大或减小。 您可以在增量表达式中增加或减少i的值。

To increase the value of i by one, you reassign i such that it becomes i + 1 with i = i + 1. The shorthand for this reassignment is i++, which is what you’ll find in most for loops.

若要将i的值增加1,请重新分配i ,使其在i = i + 1时变为i + 1 。 这种重新分配的简写是i++ ,这是您在大多数for循环中都可以找到的。

To decrease the value of i by one, you reassign i such that it becomes i - 1 with i = i - 1. The shorthand for this reassignment is i--, which is another variation of what you’ll find in most for loops.

要减小的值i被一个,重新分配i使得它成为i - 1i = i - 1 。 这种重新分配的简写是i-- ,这是您在大多数for循环中会发现的另一种变体。

In the bounceBall example above, we increased the variable i by one each time the code runs:

在上面的bounceBall示例中,每次代码运行时,我们将变量i增加一:

for (let i = 0; condition; i++) {   bounceBall() }

But should you increase or decrease i?

但是你应该增加还是减少i呢?

The answer lies in the condition. This condition statement evaluates either to true or false. If the statement evaluates to true, the statement runs.

答案在于条件 。 此条件语句的计算结果为truefalse 。 如果该语句的值为true ,则该语句运行。

When the statement has ran, JavaScript runs the increment expression and checks if the condition evaluates to true again. It repeats this process until the condition evaluates to false.

语句运行后,JavaScript运行增量表达式并检查条件是否再次为true 。 重复此过程,直到条件评估为false为止。

Once the condition evaluates to false, JavaScript skips the loop and moves on with the rest of your code.

一旦条件评估为false ,JavaScript将跳过循环,并继续处理其余代码。

So, if you do not want the loop to run, you can set a condition that evaluates to false immediately:

因此,如果您不希望循环运行,则可以设置一个条件,该条件的值立即为false:

// This loop will not run since the condition evaluates to false for (let i = 0; i < 0; i++) {   bounceBall()   const timesBounced = i + 1   console.log('The ball has bounced ' + timesBounced + ' times') }
// You will only see this console.log('next line of code')

If you want the loop to run twice, you change the condition such that it evaluates to false when the increment expression has run twice.

如果希望循环运行两次 ,则可以更改条件,以使增量表达式运行两次时其结果为false。

// This loop will run twice for (let i = 0; i < 2; i++) {   bounceBall()   const timesBounced = i + 1   console.log('The ball has bounced ' + timesBounced + ' times')") }
console.log('next line of code')

If you want the loop to run ten times, you change the condition such that it evaluates to false when the increment expression has run ten times.

如果希望循环运行十次 ,请更改条件,以使增量表达式运行十次后其结果为false。

// This loop will run ten times for (let i = 0; i < 10; i++) {   bounceBall()   const timesBounced = i + 1   console.log('The ball has bounced ' + timesBounced + ' times')") }
console.log('next line of code')

无限循环 (Infinite loops)

Infinite loops occur when the condition for your for loops always return true. Your browser will hang if you run an infinite loop.

for循环的条件始终返回true时,将发生无限循环。 如果运行无限循环,浏览器将挂起。

To recover from an infinite loop, you need to quit your browser forcefully. On a Mac, this means you right click on your browser icon and select “force quit.” On a Window’s machine, you open the Windows Task manager with ctrl + alt + del, select your browser, and click “End task.”

要从无限循环中恢复,您需要强行退出浏览器。 在Mac上,这意味着您右键单击浏览器图标,然后选择“强制退出”。 在Windows的计算机上,使用ctrl + alt + del打开Windows任务管理器,选择浏览器,然后单击“结束任务”。

遍历数组 (Looping through arrays)

In practice, you almost never write a loop that runs ten times like in the bounceBall example above. You’d always loop through an array or a object.

实际上,您几乎从不会编写像上面的bounceBall示例中那样运行十次的循环。 您将始终遍历数组或对象。

When you loop (or iterate) through an array, you go through each item in the array once. To do so, you can use the length or the array as a condition:

当您遍历(或迭代)数组时,将遍历数组中的每一项。 为此,可以使用长度或数组作为条件:

const fruitBasket = ['banana', 'pear', 'guava']
// fruitBasket.length is 3 for (let i = 0; i < fruitBasket.length; i++) {   console.log("There's a " + fruitBasket[i] + " in the basket") }
// => There's a banana in the basket // => There's a pear in the basket // => There's a guava in the basket

The alternate way to write this for loop is to use a negative increment expression. This version runs slightly faster than the for loop above, but loops the array from the end instead.

编写此for循环的另一种方法是使用负增量表达式。 该版本比上面的for循环运行速度稍快,但是从末尾开始循环数组。

for (let i = fruitBasket.length - 1; i >= 0; i--) {  console.log("There's a " + fruitBasket[i] + " in the basket") }
// => There's a guava in the basket // => There's a pear in the basket // => There's a banana in the basket

用“ for of”遍历数组 (Looping through arrays with “for of”)

Yet another (much better) way to loop through an array is to use a for...of loop. This is a new loop syntax that comes with ES6. It looks like this:

循环遍历数组的另一种方法(更好)是使用for...of循环。 这是ES6随附的新循环语法。 看起来像这样:

const fruitBasket = ['banana', 'pear', 'guava']
for (let fruit of fruitBasket) {   console.log(fruit) }
// => There's a banana in the basket // => There's a pear in the basket // => There's a guava in the basket

The for...of loop is preferable to the standard for loop because it always loops through the array once. There’s no need to write array.length, which makes your code much easier to read and maintain.

for...of循环优于标准的for循环,因为它总是循环遍历数组一次。 无需编写array.length ,这使您的代码更易于阅读和维护。

You can use for...of with any iterable object. These are objects that contain the Symbol.iterator property. Arrays are one such object. If you console.log an empty array, you’ll see that it has the Symbol.iterator as one of its keys (within the Array __proto__ key):

您可以将for...of用于任何可迭代的对象。 这些是包含Symbol.iterator属性的对象。 数组就是这样一种对象。 如果console.log一个空数组,您将看到它具有Symbol.iterator作为其键之一(在Array __proto__键内):

循环逻辑 (Logic in loops)

You can use if/else or any other logic within a for loop.

您可以在循环中使用if/else或任何其他逻辑。

For example, let’s say you have a list of numbers, and you want to create a second list of numbers that are smaller that 20.

例如,假设您有一个数字列表,并且想创建第二个小于20的数字列表。

To complete this objective, you first loop through the numbers.

为了完成这个目标,您首先要遍历数字。

const numbers = [25, 22, 12, 56, 8, 18, 34]
for (let num of numbers) {   // do something here }

Here, you want to check if each num is smaller than 20.

在这里,您要检查每个num是否小于20。

const numbers = [25, 22, 12, 56, 8, 18, 34]
for (let num of numbers) {   if (num < 20) {     // do something   } }

If num is smaller than 20, you want to add it to another array. To do so, you use the push method.

如果num小于20,则要将其添加到另一个数组中。 为此,您可以使用push方法。

const numbers = [25, 22, 12, 56, 8, 18, 34]let smallerThan20 = []
for (let num of numbers) {   if (num < 20) {     smallerThan20.push(num)   } }
// smallerThan20 === [12, 8 , 18]

结语 (Wrapping up)

A for loop is used when you want to execute the same task (or a set of tasks) multiple times.

如果要多次执行同一任务(或一组任务),则使用for循环。

You would rarely loop through code for exactly ten times. Normally, you’ll want to loop through an array instead.

您很少会遍历代码十次。 通常,您将需要遍历数组。

To loop through an array exactly once, you can use the for...of loop, which is much easier to write and understand compared to the traditional for loop.

要只遍历一次数组,可以使用for...of循环,与传统的for循环相比,它易于编写和理解。

Remember, you can write any amount of logic you want in loops. You can use functions, if/else statements, or even use loops in loops.

请记住,您可以在循环中编写任意数量的逻辑。 您可以使用函数, if/else语句,甚至可以在循环中使用循环。

If you loved this article, you’ll love learn Learn JavaScript — a course that helps you learn to build real components from scratch with Javascript. Click here to find out more about Learn JavaScript if you’re interested.

如果您喜欢这篇文章,那么您会喜欢学习JavaScript ,这是一门可以帮助您从头开始使用Javascript 构建实际组件的课程。 如果您有兴趣, 请单击此处以了解有关学习JavaScript的更多信息 。

(Oh, by the way, if you liked this article, I’d appreciate it if you could share it. ?)

(哦,顺便说一句,如果您喜欢这篇文章,如果可以分享的话 ,不胜感激。)

Originally published at zellwk.com.

最初在zellwk.com上发布。

翻译自: https://www.freecodecamp.org/news/javascript-essentials-how-to-wrap-your-head-around-for-loops-64e1a7248c9e/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395009.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python中的类的成员变量以及property函数

1 python类的各种变量 1.1 全局变量 在类外定义的变量。 1.2 类变量 定义在类里面&#xff0c;所有的函数外面的变量。这个变量只有一份&#xff0c;是所有的对象共有的。在类外用“类.”来引用。 1.3 实例变量 用self.xxx在类的任何函数中定义的变量就是实例变量。在类内用“s…

C++常用的系统函数

数学<math.h>&#xff1a; 1 三角函数 double sin (double); double cos (double); double tan (double); 2 反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (double); 结果介于[0, PI] double atan (double); 反正切(主值), 结果介于[-PI/2, PI/2…

网页特效java代码,美化网页常用特效代码

1&#xff0e;让文字不停地滚动&#xff1c;MARQUEE&#xff1e;滚动文字&#xff1c;/MARQUEE&#xff1e;2&#xff0e;记录并显示网页的最后修改时间&#xff1c;script languageJavaScript&#xff1e;document.write("最后更新时间: " document.lastModified …

作业,两次实验

实验一&#xff1a; 1 编程打印5行的倒三角形&#xff0c;第一行打印9个*&#xff0c;第二行7个*&#xff0c;……第5行打印1个* #include<stdio.h>int main(){printf("*********\n *******\n *****\n ***\n *\n");return 0;} 总结 注意换行以及位置的…

javaweb和ajax使用查询出来的数据做下拉菜单_区块链浏览器实用指南篇:利用链上数据把握减半行情...

进入2020年&#xff0c;加密货币市场最热的话题当属“减半”了。在减半行情的推动下&#xff0c;以BTC为首的减半币种展现出了极强的上行趋势。如何抓住这一波行情&#xff0c;评估正确时机&#xff1f;当然&#xff0c;这个问题的答案可以说是争议纷纷&#xff0c;但有一个参考…

纯函数式编程语言_纯功能编程语言如何改变您的生活。

纯函数式编程语言by Andrea Zanin由Andrea Zanin 纯功能编程语言如何改变您的生活。 (How a purely functional programming language can change your life.) I believe everyone should learn Haskell, even if you won’t use it in your work. It’s beautiful, and it ch…

Win10 教育版

Windows 10 版本 1607 引入了专为 K-12 机构的特有需求而设计的两个版本&#xff1a;Windows 10 专业教育版和 Windows 10 教育版。 这些版本为不断发展的 K-12 教育 IT 环境提供特定于教育的默认设置。Windows 10 专业教育版Windows 10 专业教育版基于 Windows 10 专业版的商业…

java中的排序方法,Java中的排序比较方式:自然排序和比较器排序

这里所说到的Java中的排序并不是指插入排序、希尔排序、归并排序等具体的排序算法。而是指执行这些排序算法时&#xff0c;比较两个对象“大小”的比较操作。我们很容易理解整型的 i>j 这样的比较方式&#xff0c;但当我们对多个对象进行排序时&#xff0c;如何比较两个对象…

ImageView缩放选项

ImageView.ScaleType 将图片边界缩放到所在view边界时的缩放选项。 Options for scaling the bounds of an image to the bounds of this view. 不同选项含义 CENTER 居中&#xff0c;不缩放。 Center the image in the view, but perform no scaling. CENTER_CROP 居中&#x…

css命名_CSS命名约定将节省您的调试时间

css命名I have heard lots of developers say they hate CSS. In my experience, this comes as a result of not taking the time to learn CSS.我听到很多开发人员说他们讨厌CSS。 以我的经验&#xff0c;这是因为没有花时间学习CSS。 Korean ??韩文?? 알림: 한국인 독…

电脑删除快捷键_可能是知乎最有用的 Windows 快捷键学习指南。

在任何地方搜索“快捷键的使用”&#xff0c;你都能找到无数的列表清单。但你应该不会专门去对照一个个的表单&#xff0c;企图把所有快捷键全部掌握吧&#xff1f;经过三年左右的总结和视频制作&#xff0c;Topbook 大概产出了 20 支左右的快捷键、快捷操作及应用等相关的视频…

java自动依照日期建表,脚本根据一个表中的日期字段填充每月汇总表

你想在这里做两件事 . 我假设您正在使用Oracle(因为您正在使用Java) .首先&#xff0c;您希望对每个用户的每日交易进行分组 .创建一个名为 tempTable 的临时表 .使用 to_char(currentdate, yyyy/mm/dd) 对它们进行分组 .INSERT INTO tempTableSELECTuserid,resourceid,doc_nam…

算法专题 普及组【2008】三3 C++版

转载于:https://www.cnblogs.com/qilinart/articles/5914850.html

linux用户修改用户shell

要拒绝系统用户登录,可以将其shell设置为/usr/sbin/nologin或者/bin/false # usermod -s /usr/sbin/nologin username 或者 # usermod -s /bin/false username /bin/false/bin/false什么也不做只是返回一个错误状态,然后立即退出。将用户的shell设置为/bin/false,用户会无法登录…

【覆盖安装】通用测试点

需要xmind文档请留言将会私发。 转载于:https://www.cnblogs.com/syw20170419/p/10457600.html

instagram架构_如何创建像Instagram这样的照片共享应用程序:基本知识。

instagram架构by Dmytro Brovkin由Dmytro Brovkin 如何创建像Instagram这样的照片共享应用程序&#xff1a;基本知识。 (How to create a photo sharing app like Instagram: the basics.) After two centuries of rapid development, photography has come a long way from b…

菜鸟裹裹电脑版_【绵阳最新转让】3500低价出售家用制氧机!东芝i5笔记本电脑、索尼微单相机、联想笔记本电脑、奶茶店、服装店转让......

转换价值&#xff0c;传承梦想西蜀网让你淘好物~3500出售鱼跃家用制氧机&#xff0c;带雾化全新鱼跃152021/9F_5W型家用制氧机&#xff0c;带雾化。正规医疗器械公司买的&#xff0c;有小票&#xff0c;买到只用了一次&#xff0c;买成4382现低价转让。联系电话&#xff1a;邓女…

认识软件性能测试10大误区

曾经我们帮助客户进行软件性能测试的时候&#xff0c;客户不解的问&#xff0c;不是必须通过功能测试后才可以测试性能吗&#xff1f;可能有很多人会存在这样的疑问&#xff0c;在这里&#xff0c;我们的多位专家根据多年经验总结出性能测试的10大误区&#xff0c;希望能给大家…

mac php oracle11g,Oracle11G函数整理

返回字符的字符函数 1、CHR(n) [n为正整数&#xff0c;如果ngt;256&#xff0c;就去MOD(n,256)] select CHR(65) a1,CHR(67)||CHR(65)||CHR(84) a2 FR返回字符的字符函数1、CHR(n) [n为正整数&#xff0c;如果n>256&#xff0c;就去MOD(n,256)]2、CONCAT(ch1,ch2) 拼接字符串…

软工_个人博客作业3

PART1 博文阅读感想 十几篇博客一气读下来&#xff0c;有一个词一直萦绕在我的脑海里——紧张&#xff01;紧张&#xff01;还是紧张&#xff01; 首先这紧张来自于自己的学习方面。作为计算机系的科班出身&#xff0c;当然与生俱来就有一种优越感——我们是专业的&#xff0c;…