Skip to content

Instantly share code, notes, and snippets.

@Williams-Christopher
Last active February 13, 2019 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Williams-Christopher/71ec870cde965bcdbc7731a7fe2d6eda to your computer and use it in GitHub Desktop.
Save Williams-Christopher/71ec870cde965bcdbc7731a7fe2d6eda to your computer and use it in GitHub Desktop.
Module 5 - Checkpoint 8 - Array Drill Solutions
https://repl.it/@Christopher_W/Creating-arrays-drill
https://repl.it/@Christopher_W/Adding-array-items-drills
Why does this not work?
function addToList(list, item) {
return list.push(item);
}
https://repl.it/@Christopher_W/Accessing-array-items-drill
https://repl.it/@Christopher_W/Array-length-and-access-drill
https://repl.it/@Christopher_W/Array-copying-I-drill
https://repl.it/@Christopher_W/Array-copying-II-drill
The following are answered with both anonymous and arrow functions
https://repl.it/@Christopher_W/Squares-with-map-drill
https://repl.it/@Christopher_W/Sort-drill
https://repl.it/@Christopher_W/Filter-drill
https://repl.it/@Christopher_W/Find-drill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment