Posterior a observar en diversos repositorios y foros al concluir hemos hallado la solución que te enseñaremos ahora.
Ejemplo 1: encuentre el segundo número más grande en array javascript
varsecondMax=function()var arr =[20,120,111,215,54,78];// use int arraysvar max =Math.max.apply(null, arr);// get the max of the array
arr.splice(arr.indexOf(max),1);// remove max from the arrayreturnMath.max.apply(null, arr);// get the 2nd max;
Ejemplo 2: encuentre el segundo número más grande en array javascript
varsecondMax=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 -infinityvar secondMax =Math.max.apply(null, arr);// get the new max
arr[maxi]= max;return secondMax;;
Reseñas y puntuaciones del tutorial
Si haces scroll puedes encontrar las ilustraciones de otros desarrolladores, tú asimismo tienes el poder insertar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)