new Node(data) Linked list node. Source: data-structures/linked-list.js, line 47 Parameters: Name Type Description data Object Data of the node. Members data :Object Data of the node. Source: data-structures/linked-list.js, line 52 Type: Object next :Node Next node. Source: data-structures/linked-list.js, line 57 Type: Node prev :Node Previous node. Source: data-structures/linked-list.js, line 62 Type: Node