Answers for "javascript the round() function returns a floating point number that is a rounded version of the specified number, javascript"

2

Javascript round number to nearest 5

function round5(x)
{
    return Math.ceil(x/5)*5;
}
Posted by: Guest on November-04-2020

Code answers related to "javascript the round() function returns a floating point number that is a rounded version of the specified number, javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language