Array Duvida JS

Asked

Viewed 124 times

-2

inserir a descrição da imagem aqui

I’m having doubts and I’m taking a lot to solve this exercise someone could give me a Help?

2 answers

1

Next time you post your attempt it’s easier to show you where you’re going wrong instead of just giving the answer!

function produto(array){
       //inicia resultado com o valor 1
       let resultado = 1;
       //para cada elemento do array
       array.forEach(function(elem){
           //multiplica o resultado * elemento e atribui a variavel resultado
           resultado *= elem;
       });
       //retorna o resultado
       return resultado;
    }
    
    //chama a funçao
    console.log(produto([1, 4, 7]));

0


You can use the for and do so:

function produto(y){
       var res = 1;
       for(var x = 0; x < y.length; x++) res *= y[x];
       return res;
    }
    
    console.log(produto([1, 4, 7]));

I hope I’ve helped.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.