Adding and removing items to arrays
Use these 4 Javascript methods to either Add or remove items to an array. Many other methods can be used, but for now, I will go over Push, Pop, Shift, and Unshift.
PUSH()
This method will add the items to the end of the array.
POP()
This method will...
blog.jimenez.tech1 min read