Skip to content

Instantly share code, notes, and snippets.

@hyukkwonepic
Created December 9, 2018 02:38
Show Gist options
  • Save hyukkwonepic/7489abb6c4b09188e1dd5feac260a923 to your computer and use it in GitHub Desktop.
Save hyukkwonepic/7489abb6c4b09188e1dd5feac260a923 to your computer and use it in GitHub Desktop.
class Node {
constructor(data, next=null) {
this.data = data
this.next = next
}
}
let ari = new Node('Ari')
let malcolm = new Node('Malcolm', ari)
let pete = new Node('Pete', malcolm)
let ricky = new Node('Ricky', pete)
let sean = new Node('Sean', ricky)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment