JSLint says the +
are getting confused in the hints in Webstorm yet this code works.
var totalheightInInches = +selectedFeetToInches + +this.inchSelect.get("value");
is this bad practice or is there a better way to convert so that JSLint is satisfied since JSLint is based on best practices as we know?
before people hastily reach to close this, I wanna know what's some of the better ways to handle this conversion.