Reverse a Linked List Interviewer Prompt const mkNode = (value, next = null) => ({ value, next }) const nums = mkNode(1, mkNode(2, mkNode(3)))