In this series, we will take an in-depth look at JavaScript Arrays, their properties, their methods, ways we can manipulate their values, and much more.
In part 1, we will go over: isArray(), length, indexOf(), lastIndexOf(), push(), pop(), unshift(), and shift()
In part 2, we will go over: toString(), reverse(), concat(), and join()
In part 3, we will go over: slice() and splice()
In part 4, we will go over: sort()
In part 5, we will go over: filter(), every(), and some()
In part 6, we will go over: reduce() and reduceRight()
In part 7, we will go over: map() and also chain together some of the methods we have gone over in this series.
That wraps up our 7-Part series on JavaScript Arrays. I hope it was helpful!