Javascript Array Methods
1. Push() and pop()
These methods add or remove elements from the end of an array.push() - Add element to the end
let numbers = [1, 2, 3];
number.push(4);
console.log(numbers);
output: [1,2,3,4]
2. Sh
javascript-blog1.hashnode.dev2 min read