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

Class

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

Source from the content-addressed store, hash-verified

16}
17
18class LinkedList {
19 constructor(listOfValues) {
20 this.headNode = null
21 this.tailNode = null

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected