Advertisement
Guest User

2. Simple Calculations

a guest
Jul 23rd, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function roundNumber(value) {
  2.     console.log(Math.floor(value));
  3.     console.log(Math.round(value));
  4. }
  5.  
  6. roundNumber(22.7);
  7. roundNumber(12.3);
  8. roundNumber(58.7);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement