Skip to content

Instantly share code, notes, and snippets.

@RomanTurner
Last active April 7, 2021 22:18
Show Gist options
  • Save RomanTurner/8c9cd7fda53d1d6b9ebac50727f96487 to your computer and use it in GitHub Desktop.
Save RomanTurner/8c9cd7fda53d1d6b9ebac50727f96487 to your computer and use it in GitHub Desktop.
Starting a Stack using Linked List
class Stack {
constructor(){
this.length = 0;
this.head = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment