toFixed vs toPrecision vs Math.round() fast vs Math.floorfast vs new Math.trunc (version: 0)
Comparing performance of: toFixed(4) vs toPrecision(4).toString() vs (~~Math.round(*10000)).toString() vs Math.floor fast vs the new Math.trunc
Comparing performance of: toFixed(4) someFloat.toFixed(4); someFloat.t vs toPrecision(4).toString() vs ~(someFloat*1000)/-1000 vs Math.floor fast vs Math.trunc