Will this script
var a = 1/3;
var b = 2/5;
var c = a+b;
run faster or slower than this script
var a = Math.round(100*(1/3))/100;
var b = Math.round(100*(2/5))/100;
var c = a+b;
Or rather, is there a way to get javascript to evaluate an equation to only a certain level of accuracy.
var a = Math.onlySolveThisUpTo2DecimalPlaces(1/3); //0.33
Is the speed difference even large enough to care about?