Computer >> Computer tutorials >  >> Programming >> Javascript

Types of Linked List in Javascript


Following are the various flavors of the linked list.

  •  Simple Linked List − Item Navigation is forward only.
  •  Doubly Linked List − Items can be navigated forward and backward way.
  •  Circular Linked List − Last item contains link of the first element as next and the first element has a link to the last element as prev.