Advertisement
whip

Untitled

Mar 25th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function exerciseThree(str){
  2. // In this exercise, you will be given a variable, it will be called: str
  3. // On the next line create a variable called 'length' and using the length property assign the new variable to the length of str
  4. var length =
  5. str.length;
  6. // Please write your answer in the line above.
  7. return length;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement