Advertisement
silvana1303

smallest of three numbers

Apr 9th, 2021
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function  solve(num1, num2, num3){
  2.  
  3.     console.log(Math.min(num1, num2, num3));
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement