Analise o código JavaScript a seguir:
<!DOCTYPE html>
<html>
<head><title>Teste</title></head>
<body>
<script>
function verificar() {
var y=document.getElementById("exibe");
y.innerHTML="";
try {
var x=document.getElementById("valor").value;
if(x=="") _______ "Campo vazio";
if(isNaN(x)) _______ "Não é um número";
if(x>10) _______ "Valor superior a 10";
if(x<0) _______ "Valor inferior a 0";
} catch(err) {
y.innerHTML="Erro: " + err + ".";
}
}
</script>
<form method="get" action="teste.jsp">
<p> Digite um valor entre 0 e 10:<br>
<input id="valor" type="text">
</p>
<button type="button" onclick="verificar()">Testar</button>
</form>
<p id="exibe"></p>
</body>
</html>
As lacunas são preenchidas corretamente com a instrução: