Advertisement
whip

Untitled

Mar 26th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function exerciseTwo(value){
  2. // In this exercise, you will be given a variable, it will be called: value
  3. // On the next line create a variable called 'lessThan' and using a comparison operator, check to see if value is less than 20.
  4. // Assign the results of that to 'lessThan'
  5. var lessthan = value <= 20; // true
  6.  
  7.  
  8. // Please write your answer in the line above.
  9. return lessThan;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement