Advertisement
borsha06

js_p18

Apr 26th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function value(value1,value2)
  2. {
  3.     if(value1==50 || value2 == 50 || value1+value2==50)
  4.         return true;
  5.     else
  6.         return false;
  7. }
  8. console.log(value(77,3));
  9. console.log(value(7,43));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement