Answers for "js number round to each 15"

0

js number round to each 15

Math.ceil(n / 15) * 15
// 3 -> 15, 22 -> 30 etc.
Posted by: Guest on January-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language