Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in javascript, lets say I got a random number 136, i'd like it to convert it automatically to 140 or if I got 124 to 120 etc or 24 to 20 etc..

share|improve this question
1  
"What have you tried?" -1 – user166390 Oct 30 '11 at 22:09

2 Answers

up vote 11 down vote accepted

Divide by 10 and round it, then multiply by 10.

var x = 136;
console.log(Math.round(x / 10) * 10);
share|improve this answer

I would just do this: ( Math.round(YourNumber/10) ) * 10

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.