Dúvida:
Console do editor diz ter erro de sintaxe, que não reconhece o && usado para verificação. Fiz do jeito que estava na aula. Alguém vê um erro?
Console diz:
p5.js says: There's a syntax error due to a symbol that wasn't expected at its place. Usually this is due to a typo. Check the line number in the error below for anything missing/extra.
Meu código:
function colideRaq() {
    if (xBola - raio < xRaq + wRaq) {
      && yBola - raio < yRaq + hRaq
        && yBola + raio > yRaq); {
        velocxBola *= -1;
    };
}Nota:
wRaq = Comprimento da Raquete
hRaq = Altura da Raquete