blackbelt60 Posted January 28, 2014 Share Posted January 28, 2014 Hello. I need to get the same results I get by running the Excel function floor(number; significance) , round down a number to the closer multiple of the significance value. That is, if I run floor(100000; 12) on Excel I get 99996 , which is the closer integer down, multiple of 12. Sorry I can't find any similar in JavaScript. Thank you. Maurizio Quote Link to comment Share on other sites More sharing options...
step Posted January 28, 2014 Share Posted January 28, 2014 var number = 100000; var significance = 12; return Math.floor(number / significance) * significance; Quote Link to comment Share on other sites More sharing options...
blackbelt60 Posted January 30, 2014 Author Share Posted January 30, 2014 Thank you very much ! Maurizio Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.