Prezados,
Por que no código abaixo, não usamos () quando nos referimos à função "atira", no trecho final do código?
<meta charset = "UTF-8">
<canvas id="tela" width="600" height="400"></canvas>
<script>
var tela = document.getElementById("tela");
var c = tela.getContext("2d");
c.fillStyle = "gray";
c.fillRect(0, 0, 600, 400);
var atira = function(evento){
var x = evento.pageX - tela.offsetLeft;
var y = evento.pageY - tela.offsetTop;
c.fillStyle = "blue";
c.beginPath();
c.arc(x, y, 10, 0, 2*Math.PI);
c.fill();
console.log("X: " + x + "\nY: " + y);
}
tela.onclick = atira;
</script>
Até então, todas as funções, quando chamadas no código, seguiam os padrões a seguir: atira () ou atira(argumentos)