vote up 0 vote down star

Hello all,

My JS skills are not good enough to do the following task so I am calling on the community! I could learn to do this, but I need to get this task done quickly, so I appreciate any help.

I would like to round a number passed by a user to the nearest 10. For example, if 7 is passed I should return 10, if 33 is passed I should return 30.

I am using JQuery, I had a look for this sort of function but couldn't find one, it's too specific I guess. Hopefully, the Math library can be used?

Thanks all

flag

no jquery needed as you can see in the answers, you could perhaps edit your question/tags... – Sander Versluys Nov 5 at 23:18

2 Answers

vote up 4 vote down check

Divide the number by 10, round the result and multiply it with 10 again:

var number = 33;
alert(Math.round(number / 10) * 10);
link|flag
Thank you for the explanation! – Abs Nov 5 at 22:54
vote up 4 vote down
Math.round(x / 10) * 10
link|flag

Your Answer

Get an OpenID
or

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