Guest User

Untitled

a guest
Feb 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function min(a,b) {
  2. var result = b;
  3. if (a < b)
  4. result = a;
  5. return result;
  6. }
  7.  
  8. console.log(min(0, 10));
  9. // → 0
  10. console.log(min(0, -10));
  11. // → -10
Add Comment
Please, Sign In to add comment