Resources
Last updated
Last updated
Congratulations! You should now have a basic understanding of arrays and a completed palindrome algorithm. In this section you'll find links to the resources that make up the arrays module.
- You'll find an explanation of arrays from the MDN docs here.
- This MDN page has a lot of array methods, you'll find them on the left side of the screen.
- A list of 20 of the most common array/string methods/functions (what's the proper word to use here?) with examples for each.
- 5 of the most useful methods for beginners to learn, the examples are great!
- An impressive compilation of methods and examples, might be difficult to navigate.
- A guide to string methods like .split()
or .replace()
.
- An example we used to create the palindrome algorithm.
- The Wikipedia entry for palindrome.
- Most of the inspiration for the challenges can be found here.
- Different ways to find the largest number in an array
- Information regarding NodeLists
- Information regarding the apply()
method
- Some great potential interview question problems.
- Lots of information regarding sorting algorithms.