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

JavaScript uses Array filter() to compress sparse arrays

小云云
Release: 2018-02-26 09:02:08
Original
2046 people have browsed it

What is a sparse array

The indexes of array 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. 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 it. I hope it can help you.

(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

Related recommendations:

php function array_filter() that uses a callback function to filter elements in an array

Detailed explanation of usage examples of find() and filter() operations in jQuery

Detailed explanation of usage of filter() method to traverse DOM nodes

The above is the detailed content of JavaScript uses Array filter() to compress sparse arrays. 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!