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

JS method to obtain the maximum value, minimum value and length of an array_javascript skills

WBOY
Release: 2016-05-16 15:30:15
Original
1446 people have browsed it

The example in this article describes the JS method of obtaining the maximum value, minimum value and length of an array. Share it with everyone for your reference, the details are as follows:

//最小值
Array.prototype.min = function() {
var min = this[0];
var len = this.length;
for (var i = 1; i < len; i++){
if (this[i] < min){
min = this[i];
}
}
return min;
}
//最大值
Array.prototype.max = function() {
var max = this[0];
var len = this.length;
for (var i = 1; i < len; i++){
if (this[i] > max) {
max = this[i];
}
}
return max;
}
//数组长度
var array = new array(1,2,3,2,4,55,2);
alert(array.length);//输出7

Copy after login

I hope this article will be helpful to everyone in JavaScript programming.

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