ES6 toFixed() ES6 toExponential() ES6 toLocaleString() ES6 toFixed() var num3 = 177.234 console.log("num3.toFixed() is "+num3.toFixed()) console.log("num3.toFixed(2) is "+num3.toFixed(2)) console.log("num3.toFixed(6) is "+num3.toFixed(6)) ES6 toExponential() ES6 toLocaleString()