How to limit the decimal place to 4 in javascript with this type of values? the e is the exponent since I am using power of ten values. toFixed() doesn\'t seem
toFixed()
Try:
Math.round(val*10000)/10000