Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Last active May 12, 2024 16:37
Show Gist options
  • Save TheShubhamVsnv/d8d025ac9b074e42307ef2b7aa1e9ca9 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/d8d025ac9b074e42307ef2b7aa1e9ca9 to your computer and use it in GitHub Desktop.
push() and pop():
let items = ["apple", "banana"];
items.push("orange"); // Add a new item
let removedItem = items.pop(); // Remove the last item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment