Javascript Array Methods Part 1
Javascript Array Methods
Arrays in Javascript provide a lot of methods, To make things easier.
Add Items
There are many ways to add items in an array Like:
push
unshift
We use push method to add items to the end of an array.
let arr = [1,2,3,4];...
semantic-code.hashnode.dev2 min read