Advertisement
Spocoman

02. Rounding

Jan 13th, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function rounding(number, round) {
  2.  
  3.     if (round > 15){
  4.         round = 15;
  5.     }
  6.     console.log(Number(number.toFixed(round)));
  7.  
  8. }
  9.  
  10.  
  11.  
  12. Тарикатско решение:
  13.  
  14. function rounding(number, round) {
  15.  
  16.     console.log(Number(number.toFixed(round > 15 ? 15: round)));
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement