toFixed vs toPrecision vs Math.round() vs customRound() (version: 0)
Comparing performance of: toFixed(2) vs toPrecision(2).toString() vs (Math.round(*100)/100).toString() vs (Math.round(*100) * 0.01).toString() vs customRound(*100) * 0.01.toString()