Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to check to see if my input is a float.

Sooo something like...

if (typeof (input) == "float")
do something....

What is the proper way to do this?

share|improve this question
1  
Please see stackoverflow.com/q/3885817/239241 – betamax Aug 1 '11 at 15:25

3 Answers

typeof foo === "number"

All numbers are floats in Javascript. Note that the type name is in quotes, it's a string, and it's all lower case. Also note that typeof is an operator, not a function, no need for parens (though they're harmless).

share|improve this answer

As spraff said, you can check the type of an input with typeof. In this case

if (typeof input === "number") {
    // It's a number
}

JavaScript just has Number, not separate float and integer types. More about figuring out what things are in JavaScript: Say what?

If it may be something else (like a string) but you want to convert it to a number if possible, you can use either Number or parseFloat:

input = Number(input);
if (!isNaN(input)) {
    // It was already a number or we were able to convert it
}

More:

share|improve this answer

Try parseFloat

if(!isNaN ( parseFloat ( input ) ) {
    //float goes here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.