Skip to content

Instantly share code, notes, and snippets.

@RomanTurner
Created April 7, 2021 22:12
Show Gist options
  • Save RomanTurner/cf6cbaf136340549727c2e4c2e7a6185 to your computer and use it in GitHub Desktop.
Save RomanTurner/cf6cbaf136340549727c2e4c2e7a6185 to your computer and use it in GitHub Desktop.
Node for LL
//Node
class Node {
constructor(el){
this.element = el;
this.next = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment