I would like to format my numbers to always display 2 decimal places, rounding where applicable.
Examples:
number display ------ ------- 1
Simplest answer:
var num = 1.2353453; num.toFixed(2); // 1.24
Example: http://jsfiddle.net/E2XU7/