At this moment I am programming a game of Ping Pong and I am supporting myself in a tutorial to do it. The question is that I have an error of the type:
Uncaught SyntaxError: Missing initializer in const declaration
and I can not find any solution
const callback (millis) => {
if (lastTime) {
this.update( (millis - lastTime) / 1000 );
}
lastTime = millis;
requestAnimationFrame(callback);
};