Advertisement
whip

Untitled

Mar 26th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 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';
  6.  
  7.  
  8.  
  9. // Please write your answer in the line above.
  10. return lessThan;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement