1
resposta

Variável dentro de função

Guys, Eu tentei fazer de uma forma diferente do professor, adicionando as variaveis com a subtração dentro de uma função e não rolou, alguém sabe o porque?

<meta charset="UTF-8">

<script>

function breakTxt() {

    document.write("<br>")

}

var myAge = 23;
var brotherAge = 37;

function ageCalculator() {

    document.write(brotherAge - myAge)
}

function showInfo(string) {

    alert(string);

}

showInfo("Our age difference is " + breakTxt() + ageCalculator() + " years!")

</script>
1 resposta

Experimente fazer com que as funções retornem valores. Algo como:

function ageCalculator()  {
    return (brotherAge - myAge);
}