I'm currently displaying 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
views:
60answers:
1
+1
A:
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
.
Alsciende
2010-05-11 15:10:15