Skip to content

Instantly share code, notes, and snippets.

@RomanTurner
Created April 7, 2021 22:24
Show Gist options
  • Save RomanTurner/523862c7b5e68c82b9649e0ecf8cc75d to your computer and use it in GitHub Desktop.
Save RomanTurner/523862c7b5e68c82b9649e0ecf8cc75d to your computer and use it in GitHub Desktop.
Peek on LL for Stack
//Return the first element in the stack
peek = () => {
if(this.head){
return this.head.element;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment