MCPcopy Index your code
hub / github.com/TheAlgorithms/JavaScript / head

Method head

Data-Structures/Linked-List/SinglyLinkedList.js:42–44  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

40
41 // Returns the head
42 head() {
43 return this.headNode?.data ?? null
44 }
45
46 // Returns the tail
47 tail() {

Calls

no outgoing calls

Tested by

no test coverage detected