How to round a number up to the nearest 10 in TypeScript

1 Answer

0 votes
function roundUpToNearest10(num : number) : any {
  	return Math.ceil(num / 10) * 10;
}

console.log(roundUpToNearest10(22)); 
console.log(roundUpToNearest10(79)); 
console.log(roundUpToNearest10(399.99));
console.log(roundUpToNearest10(5.17)); 
console.log(roundUpToNearest10(3)); 
console.log(roundUpToNearest10(18)); 
console.log(roundUpToNearest10(-14));
console.log(roundUpToNearest10(-1001)); 
console.log(roundUpToNearest10(-1009));

  
  
  
/*
  
run:
  
30 
80 
400 
10 
10 
20 
-10 
-1000 
-1000 
  
*/

 



answered Jun 7, 2022 by avibootz
edited Jun 7, 2022 by avibootz

Related questions

1 answer 121 views
1 answer 118 views
1 answer 113 views
1 answer 121 views
1 answer 119 views
...