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

The operation method of iterating every and some in JavaScript array

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly introduces the JavaScript array iteration every and some of the operation methods related knowledge, detailed and easy to understand, simple and fast operation, with a certain reference value, I believe that everyone will read this JavaScript array iteration every and some of the operation methods of the article will have some gains, let's take a look at it.

Array.every()

The every () method checks whether all array values pass the test.

This example checks if all array values are greater than 18:

examples

var numbers = [45, 4, 9, 16, 25];

var allOver18 = numbers.every(myFunction);

function myFunction(value, index, array) {

return value > 18;

}

Note that this function takes three parameters:

item value

item index

array itself

If the callback function uses only the first parameter (value), the other parameters can be omitted:

examples

var numbers = [45, 4, 9, 16, 25];

var allOver18 = numbers.every(myFunction);

function myFunction(value) {

return value > 18;

}

Array.some()

Some () methods check whether certain array values pass the test.

This example checks if certain array values are greater than 18:

examples

var numbers = [45, 4, 9, 16, 25];

var someOver18 = numbers.some(myFunction);

function myFunction(value, index, array) {

return value > 18;

}

Note that this function takes three parameters:

item value

item index

array itself

All browsers support Array.some (), except Internet Explorer 8 or earlier.

About "JavaScript array iteration every and some of the operation methods" The content of this article is introduced here, thank you for reading! I believe that everyone has a certain understanding of the knowledge of "JavaScript array iteration every and some operation methods". If you still want to learn more knowledge, please pay attention to the industry information channel.

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