Last active
April 7, 2021 22:18
-
-
Save RomanTurner/8c9cd7fda53d1d6b9ebac50727f96487 to your computer and use it in GitHub Desktop.
Starting a Stack using Linked List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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