Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created May 12, 2024 16:38
Show Gist options
  • Save TheShubhamVsnv/4e90fd338eac88c14389399340bedaf5 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/4e90fd338eac88c14389399340bedaf5 to your computer and use it in GitHub Desktop.
let queue = ["apple", "banana"];
queue.unshift("orange"); // Add an item to the queue
let nextItem = queue.shift(); // Retrieve the next item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment