<button class="botao">Calcula</button>
<input class="numero">
<input class="tabuada">
<span class="resultado"></span>
<script>
function buscaElementosDoHtml(seletor) {
return document.querySelector(seletor);
}
function aplicaTabuada(numero, tabuada) {
return numero * tabuada;
}
var botao = buscaElementosDoHtml('.botao');
var numero = buscaElementosDoHtml('.numero');
var tabuada = buscaElementosDoHtml('.tabuada');
var resultado = buscaElementosDoHtml('.resultado');
botao.addEventListener('click', function() {
resultado.textContent = aplicaTabuada(numero.value, tabuada.value);
});
</script>