Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Sample Analysis of not using for-in on arrays in JavaScript

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the JavaScript do not use for-in on the array of example analysis, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian with you to understand.

Do not use for-in on arrays

Avoid:

Var sum = 0; for (var i in arrayNumbers) {sum + = arrayNumbers [I];} / / Welcome to join the front-end full-stack development communication circle to learn and communicate together: 1007317281

Even better:

Var sum = 0; for (var I = 0, len = arrayNumbers.length; I < len; iTunes +) {sum + = arrayNumbers [I];} / / Welcome to join the front-end full stack development communication circle to learn and communicate together: 1007317281

Another benefit is that the I and len variables are in the first declaration of the for loop, and they are initialized only once, which is faster than the following:

For (var I = 0; I < arrayNumbers.length; iTunes +) Thank you for reading this article carefully. I hope the article "sample Analysis of not using for-in on arrays in JavaScript" shared by the editor will be helpful to you. At the same time, I hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report