Skip to content

Instantly share code, notes, and snippets.

@Shaddyjr
Created September 24, 2019 04:41
Show Gist options
  • Save Shaddyjr/6d7eb8ddc8fe1e0f236050657bd15240 to your computer and use it in GitHub Desktop.
Save Shaddyjr/6d7eb8ddc8fe1e0f236050657bd15240 to your computer and use it in GitHub Desktop.
class Node{
constructor(val){
this.val = val
this.next = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment