Mental Model
A singly linked list is a chain of boxes where each box holds a value and points to the next box in line.
Analogy: Imagine a treasure hunt where each clue leads you to the next clue. Each clue is like a box holding a value and a pointer to the next clue.
head -> [value | next] -> [value | next] -> [value | null] ā