Dropping the '.00' when printing floats that hold whole numbers
I'm currently displaying开发者_Python百科 a quantity in Javascript. I want it to display (for example) the whole number as 89
instead of 89.00
; however, if the number is fractional like 89.50
then it should display 89.50
It isn't clear if your question is about parsing floats or about checking integers. Here is a function that accepts numbers or strings and returns the float formatted as a string:
function displayQuantity(n) {
return parseFloat(n).toFixed(n%1 ? 2 : 0);
}
In case you have to support (very) old browsers, look here for an implementation of Number#toFixed
.
精彩评论