In this podcast, I go over one of the most fundamental data structures... wait for it... ARRAYS! Arrays will be one of the most fundamental tools in your toolkit and a building block for creating more complex data structures in the future.
Show Notes
-------------
- Choose an array when you want one variable to store many Objects or primitive values. This will allow for better organization of variables and Objects within your code.
- Understand that the index of an Object stored within/referenced by an array is different than the actual Object stored there
- Make sure you're iterating through the array from index 0 - array.length-1
- Arrays have a set in stone size that you define when you create them so make sure you define that size wisely!
Make sure to practice on Hackerranked and/or code wars to ensure you have the fundamental understanding of using arrays so we can build upon that in future episodes!