In a doubly linked list, each node contains:
Data and reference to the next node only.
Data and reference to both the next and previous node.
Only data.
Data, next node, and reference to the previous node, but in a single direction.
This question is part of this quiz :
JavaScript Linked List