Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 10, 2020 21:11
Show Gist options
  • Save Nathan-Nesbitt/643e2fba9aab03996d1ea46b785d24bd to your computer and use it in GitHub Desktop.
Save Nathan-Nesbitt/643e2fba9aab03996d1ea46b785d24bd to your computer and use it in GitHub Desktop.
Queue Example JavaScript
// Example Queue //
var queue = [];
// Enqueue the values //
queue.push(1);
queue.push(2);
queue.push(3);
// Dequeue and print the values //
console.log(queue.shift());
console.log(queue.shift());
console.log(queue.shift());
@Nathan-Nesbitt
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment