///
Para que os valores contidos na array valores sejam exibidos, um abaixo do outro, a lacuna I deve ser corretamente preenchida por:","text":"Considere o corpo de uma página HTML, conforme a seguir:
Para que os valores contidos na array valores sejam exibidos, um abaixo do outro, a lacuna I deve ser corretamente preenchida por:","answerCount":5,"datePublished":"2023-01-01T00:00:00-03:00","author":{"@type":"Organization","name":"FCC","url":"https://questionei.com"},"suggestedAnswer":[{"@type":"Answer","text":"call(exibe)","position":1,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#alternativa-0","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"valores.iterator(exibe)","position":2,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#alternativa-1","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"valores.forEach(exibe)","position":3,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#alternativa-2","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"call exibe(valores.value, valores.length, valores)","position":4,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#alternativa-3","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"exibe(valores.value, valores.length, valores)","position":5,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#alternativa-4","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}}],"acceptedAnswer":{"@type":"Answer","text":"valores.forEach(exibe)","encodingFormat":"text/html","datePublished":"2023-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204126744/#resposta-correta","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}}}} Considere o corpo de uma página HTML, conforme a seguir: Para que os valores contidos na array valores sejam exibidos, um abaixo do outro, a lacuna I deve ser corretamente preenchida por:Considere o corpo de uma página HTML, conforme a seguir:<body> <p id="exibir"></p> <script> const valores = [900, 905, 9...
<body>
<p id="exibir"></p>
<script>
const valores = [900, 905, 902, 903, 908];
let x = "";
____I ;
document.getElementById("exibir").innerHTML = x;
function exibe(v, i, vs) {
x += v + "<br>";
}
</script>
</body>