I'm checking out the documentation source file index.js from this library. I checked up the code in jshint, and there's a warning saying:
Expected an assignment or function call and instead saw an expression.
File: index.js Line: 215
s = (Math.sqrt((x * x) + (y * y)) / r) * 100;
Why am I getting the warning, and how can I fix it?