Array Method In Javascript
POP():
pop() => method removes last element from the array=>
example- const fruits = ["Banana", "Orange", "Apple", "Mango"];fruits.pop();
PUSH()=>
push method add new element to an array at the end.
example:
const fruits = ["Banana", "Orange", "Apple...
fuzailkhan.hashnode.dev2 min read