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

Example of merging and sorting arrays in JavaScript_Basic knowledge

WBOY
Release: 2016-05-16 15:35:18
Original
1284 people have browsed it

Combine two arrays - concat()
Source code:

<!DOCTYPE html>
<html>
<body>
&#8203;
<p id="demo">点击按钮合并数组。</p>
&#8203;
<button onclick="myFunction()">点我</button>
&#8203;
<script>
function myFunction()
{
var hege = ["Cecilie", "Lone"];
var stale = ["Emil", "Tobias", "Linus"];
var children = hege.concat(stale);
var x=document.getElementById("demo");
x.innerHTML=children;
}
</script>
&#8203;
</body>
</html>

Copy after login

Test results:

Cecilie,Lone,Emil,Tobias,Linus
Copy after login


Combine three arrays - concat()
Source code:

<!DOCTYPE html>
<html>
<body>

<script>

var parents = ["Jani", "Tove"];
var brothers = ["Stale", "Kai Jim", "Borge"];
var children = ["Cecilie", "Lone"];
var family = parents.concat(brothers, children);
document.write(family);

</script>

</body>
</html>

Copy after login

Test results:

Jani,Tove,Stale,Kai Jim,Borge,Cecilie,Lone
Copy after login


Array sorting (alphabetical ascending) - sort()
Source code:

<!DOCTYPE html>
<html>
<body>
&#8203;
<p id="demo">Click the button to sort the array.</p>
&#8203;
<button onclick="myFunction()">Try it</button>
&#8203;
<script>
function myFunction()
{
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.sort();
var x=document.getElementById("demo");
x.innerHTML=fruits;
}
</script>
&#8203;
</body>
</html> 

Copy after login

Test results:

Apple,Banana,Mango,Orange
Copy after login

Numerical sorting (ascending numerical order) - sort()
Source code:

<!DOCTYPE html>
<html>
<body>
&#8203;
<p id="demo">Click the button to sort the array.</p>
&#8203;
<button onclick="myFunction()">Try it</button>
&#8203;
<script>
function myFunction()
{
var points = [40,100,1,5,25,10];
points.sort(function(a,b){return a-b});
var x=document.getElementById("demo");
x.innerHTML=points;
}
</script>
&#8203;
</body>
</html>  

Copy after login

Test results:

1,5,10,25,40,100
Copy after login

Numerical sorting (descending numerical order) - sort()
Source code:

<!DOCTYPE html>
<html>
<body>
&#8203;
<p id="demo">Click the button to sort the array.</p>
&#8203;
<button onclick="myFunction()">Try it</button>
&#8203;
<script>
function myFunction()
{
var points = [40,100,1,5,25,10];
points.sort(function(a,b){return b-a});
var x=document.getElementById("demo");
x.innerHTML=points;
}
</script>
&#8203;
</body>
</html>

Copy after login

Test results:

100,40,25,10,5,1
Copy after login

Reverse the order of elements in an array - reverse()
Source code:

<!DOCTYPE html>
<html>
<body>
&#8203;
<p id="demo">Click the button to reverse the order of the elements in the array.</p>
&#8203;
<button onclick="myFunction()">Try it</button>
&#8203;
<script>
var fruits = ["Banana", "Orange", "Apple", "Mango"];
&#8203;
function myFunction()
{
fruits.reverse();
var x=document.getElementById("demo");
x.innerHTML=fruits;
}
</script>
&#8203;
</body>
</html>  

Copy after login

Test results:

Mango,Apple,Orange,Banana
Copy after login

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!