whip

Untitled

Apr 6th, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function exerciseOne(classmates){
  2. // Exercise One: You will be given an array called 'classmates'
  3. // Create a variable called 'howManyStudents', and assign it to
  4. // the length of the classmates array (using the length property)
  5. var howManyStudents = classmates = [1, 2, 3, 4, 5];
  6. console.log(classmates.length); // 5
  7. // Please write your answer on the line above.
  8. return howManyStudents;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment