views:

60

answers:

1

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

+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