///
Se o valor fornecido para a variável i for","text":"Considere o fragmento de código de uma página web, abaixo.
Se o valor fornecido para a variável i for","answerCount":5,"datePublished":"2019-01-01T00:00:00-03:00","author":{"@type":"Organization","name":"FCC","url":"https://questionei.com"},"suggestedAnswer":[{"@type":"Answer","text":"9, será exibido 9 10.","position":1,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#alternativa-0","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"1, será exibido 0 1 2 3 4 5 6 7 8.","position":2,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#alternativa-1","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"11, não será exibido nenhum valor.","position":3,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#alternativa-2","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"-1, ocorrerá uma exceção.","position":4,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#alternativa-3","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}},{"@type":"Answer","text":"11, será exibido o valor 11.","position":5,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#alternativa-4","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}}],"acceptedAnswer":{"@type":"Answer","text":"11, será exibido o valor 11.","encodingFormat":"text/html","datePublished":"2019-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204138853/#resposta-correta","author":{"url":"https://questionei.com","@type":"Organization","name":"FCC"}}}} Considere o fragmento de código de uma página web, abaixo. Se o valor fornecido para a variável i forConsidere o fragmento de código de uma página web, abaixo.<body> <p id="exibe"></p> <script> var text = "" var i = promp...
<body>
<p id="exibe"></p>
<script>
var text = ""
var i = prompt("Digite um valor: ") ;
do {
text += i + " ";
i++;
}
while (i < 10);
document.getElementById("exibe").innerHTML = text;
</script>
</body>