Data Structure: Doubly Linked List
A Doubly linked list is similar to a Singly Linked List, but it holds reference to the previous node also. So we can traverse both forward and backward from any node. In this article, we are discussing in detail, the implementation of Doubly Linked List in JavaScript and TypeScript.