Considere o código Javascript abaixo:<!DOCTYPE html> &...
Considere o código Javascript abaixo:
<!DOCTYPE html>
<html>
<body>
<p id="resultado"></p>
<script>
f1();
document.getElementById("resultado").innerHTML = "Valor: " + v1;
function f1() {
v1 = "Valor1";
}
</script>
</body>
</html>
Sobre esse código, assinale a afirmativa correta.