Home > Web Front-end > JS Tutorial > body text

Using the Array filter() method to compress sparse arrays in JavaScript

亚连
Release: 2018-06-04 16:02:39
Original
1602 people have browsed it

The Array filter() method skips missing elements in a sparse array, and its return array is always dense. This article introduces you to the relevant knowledge of using the Array filter() method to compress sparse arrays in JavaScript. Friends who need it can refer to

What is a sparse array

Array The indexes of elements do not have to be consecutive, there can be gaps between them. Every javaScript array has a length property. For non-sparse arrays, this property is the number of array elements; for sparse arrays, length is greater than the number of all elements.

The Array filter() method skips missing elements in a sparse array, and its return array is always dense.

(1) Compress the vacancies of the sparse array:

var dense = sparse.filter( function(currentValue)
{ 
return true; 
}
);
Copy after login

(2) Compress the vacancies of the sparse array, and delete undefined and null elements:

var dense = sparse.filter( function(currentValue) 
{ 
return currentValue !== undefined && currentValue!= null;
} 
)
Copy after login

The above is what I compiled Everyone, I hope it will be helpful to everyone in the future.

Related articles:

nodejs example of method to connect to mongodb database

Select selector multi-selection verification method in iview

Using Axios Element to implement global request loading method

The above is the detailed content of Using the Array filter() method to compress sparse arrays in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!