Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2.  
  3. class List {
  4. constructor() {
  5. this.head = null
  6. this.tail = null
  7. }
  8. push(head) {
  9. this.head = head
  10. this.tail = new List()
  11. }
  12. }
  13.  
  14. const list1 = new List()
  15. list1.push(5)
  16. console.log(list1)
  17. if(head = 5){
  18. list1.push(6)
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement