DEV Community

Lincoln W Daniel
Lincoln W Daniel

Posted on

How to Use JavaScript Arrays - Crash Course [Video]

In this video, we take a crash course on how to use JavaScript arrays to store a list of items, access individual items of an array by their index, and loop through an array to access all or some of the elements of an array. We end by learning how to manipulate an array to change a specific element at an index, push items onto an array, and remove items from an array in JavaScript.

Storing data is an important part of programming; accessing that data is also important. In many cases, you'll have to store data as a list, array for the sake of efficiency when accessing, transferring, and manipulating that data later in your program.

My LinkedIn profile: https://www.LinkedIn.com/in/LincolnWDaniel
My website: http://www.LincolnWDaniel.com
1Liner Blog: https://www.1Liner.dev

Top comments (0)