“JavaScript encuentre el segundo elemento más alto de la matriz” Código de respuesta

JavaScript encuentre el segundo elemento más alto de la matriz

var secondMax = function (){ 
    var arr = [20, 120, 111, 215, 54, 78]; // use int arrays
    var max = Math.max.apply(null, arr); // get the max of the array
    arr.splice(arr.indexOf(max), 1); // remove max from the array
    return Math.max.apply(null, arr); // get the 2nd max
};
Jumping Boy

Segundo número más grande en Array JavaScript

['20','120','111','215','54','78'].sort(function(a, b) { return b - a; })[1];
// '120'
Important Impala

JavaScript encuentre el segundo elemento más alto de la matriz

var secondMax = function (){ 
    var arr = [20, 120, 111, 215, 54, 78]; // use int arrays
    var max = Math.max.apply(null, arr); // get the max of the array
    arr.splice(arr.indexOf(max), 1); // remove max from the array
    return Math.max.apply(null, arr); // get the 2nd max
};
Nice Narwhal

Encuentre el segundo número más grande en Array JavaScript

var secondMax = function (arr){ 
    var max = Math.max.apply(null, arr), // get the max of the array
        maxi = arr.indexOf(max);
    arr[maxi] = -Infinity; // replace max in the array with -infinity
    var secondMax = Math.max.apply(null, arr); // get the new max 
    arr[maxi] = max;
    return secondMax;
};
Courageous Chamois

Respuestas similares a “JavaScript encuentre el segundo elemento más alto de la matriz”

Preguntas similares a “JavaScript encuentre el segundo elemento más alto de la matriz”

Más respuestas relacionadas con “JavaScript encuentre el segundo elemento más alto de la matriz” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código