Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. //A basic linked list
  2. export default class LinkedList {
  3.  
  4. //initializes with a null head.
  5. constructor(){
  6. this.head = null
  7. }
  8.  
  9. //Functions go here
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement