Personally, I would just ignore it - this is just a warning, and you know that the code is good, so ... meh.
But if you really want to avoid the warning, you can try wrapping a few brackets around it:
var aSquared = (a * a);
Or you can replace your code with something like this:
function squared(a) { return a *= a; }
source share