MCPcopy Create free account
hub / github.com/TheAlgorithms/JavaScript /

Class

Data-Structures/Linked-List/DoublyLinkedList.js:1–1  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node {
2 constructor(element) {
3 this.element = element
4 this.next = null

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected