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

I have float numbers like 3.2 and 1.6.

I need to separate the number into the integer and decimal part. For example, a value of 3.2 would be split into two numbers, i.e. 3 and 0.2

Getting the integer portion is easy:

n = Math.floor(n);

But I am having trouble getting the decimal portion. I have tried this:

remainer = n % 2; //obtem a parte decimal do rating

But it does not always work correctly.

The previous code has the following output:

n = 3.1 => remainer = 1.1

What I am missing here?

share|improve this question
3  
Shouldn't 3.2 be split into 3 and 0.2? – Surreal Dreams Dec 22 '10 at 18:28
Yes. Typo error – Oscar Dec 23 '10 at 9:21

5 Answers

up vote 41 down vote accepted

Use 1, not 2.

js> 2.3 % 1
0.2999999999999998
share|improve this answer
Thanks. It works fine. – Oscar Dec 23 '10 at 9:20
You just saved my life :) – Shikiryu Apr 8 '11 at 14:39
Sweet, that simplified a nasty problem for me. – Falkayn Jun 29 '12 at 5:11
var decimal = n - Math.floor(n)

Although this won't work for minus numbers so we might have to do

n = Math.abs(n); // Change to positive
var decimal = n - Math.floor(n)
share|improve this answer
If you already have the integer portion, there's no need to call Math.floor() again -- just use the integer portion that you've calculated. – tvanfosson Dec 22 '10 at 18:29

You could convert to string, right?

n = (n + "").split(".");
share|improve this answer

You could convert it to a string and use the replace method to replace the integer part with zero, then convert the result back to a number :

var number = 123.123812,
    decimals = +number.toString().replace(/^[^\.]+/,'0');
share|improve this answer
float a=3.2;
int b=(int)a; // you'll get output b=3 here;
int c=(int)a-b; // you'll get c=.2 value 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.