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

Example of a simple method to implement array deduplication in JS

黄舟
Release: 2017-03-27 14:34:50
Original
1175 people have browsed it

This article mainly introducesJSA simple method to implement array deduplication, involving traversal, judgment and assignment operations of javascript arrays. The code is very simple and easy to understand, and has certain reference value. Friends in need You can refer to the following

The example of this article describes the simple method of deduplicating arrays in JS. Share it with everyone for your reference, the details are as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>JS数组去重</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<script>
var arr = [678, 4, 4, 4, 4, 5, 6, 7, 8, 8, 8, 8, 8];
var result = [];
for (var i = 0; i < arr.length; i++) {
 if (result[arr[i]]) {
} else {
  result[arr[i]] = arr[i];
 }
}
console.log(result);
</script>
</body>
</html>
Copy after login

The running effect diagram is as follows:

Example of a simple method to implement array deduplication in JS

The problem occurs, the new array median value corresponds to the index value. There are limitations. Although they can be arranged from small to large.

The above is the detailed content of Example of a simple method to implement array deduplication in JS. 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!