Advertisement
idotherest34

Untitled

Oct 20th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function myTest(val) {
  2.   if(val <5) {
  3.     return "Less than 5";
  4.   }
  5.    else if(val < 10) {
  6.     return "Less than 10";
  7.    }
  8.    else  {
  9.     return "Greater than or equal to 10";
  10.   }
  11. }
  12.  
  13.  
  14. // Change this value to test
  15. myTest(4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement