Last active
November 11, 2019 22:42
-
-
Save JasonLMoffit/9372d90cde0ffe050c8277ca49e08ee2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@JasonMoffit/Creating-arrays-drill | |
| https://repl.it/@JasonMoffit/Adding-array-items-drills (I had to refer to the solutions for this one. Was forgetting to return return) | |
| https://repl.it/@JasonMoffit/Accessing-array-items-drill | |
| https://repl.it/@JasonMoffit/Array-length-and-access-drill | |
| Array Method Drills | |
| https://repl.it/@JasonMoffit/Array-copying-I-drill | |
| https://repl.it/@JasonMoffit/Array-copying-II-drill | |
| https://repl.it/@JasonMoffit/Squares-with-map-drill | |
| https://repl.it/@JasonMoffit/Sort-drill | |
| https://repl.it/@JasonMoffit/Filter-drill | |
| https://repl.it/@JasonMoffit/Find-drill (couldn't figure thisone out without looking at the solutions. I didn't think of setting num % 5 === 0) | |
| https://repl.it/@JasonMoffit/min-and-max-without-sort-drill ( I could figure this one out :( | |
| https://repl.it/@JasonMoffit/average-drill | |
| https://repl.it/@JasonMoffit/fizzbuzz-drill-js I had to again refer to the solutions. I had in the for loop i = 0, and in the 5 and 15 modulo logic if(i % 3 === 0 && i % 5 === 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment