DEV Community

Discussion on: JavaScript One-Liners That Make Me Excited

Collapse
 
caseycole589 profile image
Casey Cole • Edited

//only rounds up 15 can be changed to what ever number you want to use
roundMinutes = (mins) => { return (~(mins / 15) * 15) * -1 ; }
roundMinutes(35) -> 45
// will now round down instead of up
roundMinutes = (mins) => { return (~~(mins / 5) * 5) ; }