Array Methods You Must Know
push() and pop()
These methods allows to easily add or remove elements from the end of an array
// Initial Array
let watchlist = ["John Wick", "The Boys"];
console.log("Before push:", watchlist); // [
soumo-18.hashnode.dev3 min read