👑 Head Crown Ceremony

Create new node and crown it as the new head

?
NEW
1. Create new node with value
2. newNode.next = head (point to current head)
3. head = newNode (update head pointer)
4. ✓ New node is now the head!