Answers for "como retornar o indice do maior valor de um array"

0

como retornar o indice do maior valor de um array

function retornaIndiceMaiorValor() {
    let maior = array[0];
    let indice = 0;
    for (let i = 1; i < array.length; i++) {
        if (array[i] > maior) {
            maior = array[i];
            indice = i;
        }
    }
    return indice;
}

let array = [2, 3, 6, 7, 10, 1];
console.log(retornaIndiceMaiorValor(array));
 Executar
Posted by: Guest on October-15-2021

Code answers related to "como retornar o indice do maior valor de um array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language