Skip to content

Instantly share code, notes, and snippets.

@thedineshj
Created August 10, 2018 15:27
Show Gist options
  • Save thedineshj/ed33a094f048f3e7f77af2af00f0cfb4 to your computer and use it in GitHub Desktop.
Save thedineshj/ed33a094f048f3e7f77af2af00f0cfb4 to your computer and use it in GitHub Desktop.
class node {
constructor(data) {
this.data = data;
this.next = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment