Good afternoon I'm studying Jesus.
I created a code that shows a list of numbers from 1 to 10 but I do not want the numbers 2 and 9 in my result to be shown.
My problem is not being able to express this doubt in the search or the name / term that this problem of my fit.
<meta charset="UTF-8">
<script>
function pulaLinha() {
document.write("<br>");
document.write("<br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
}
var i = 0
var cont = (i +1);
while (cont <= 10) {
mostra (cont++);
}
</script>