Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const source = [1,2,3,4,5,6,7,8,9,10];
  2. function removeFirstTwo(list) {
  3. "use strict";
  4. const [a, b, ...arr] = list; // change this
  5. return arr;
  6. }
  7. const arr = removeFirstTwo(source);
  8. console.log(arr); // should be [3,4,5,6,7,8,9,10]
  9. console.log(source); // should be [1,2,3,4,5,6,7,8,9,10];
Add Comment
Please, Sign In to add comment