Figure 2.8
The sequence 1, 2, 3, 4 represented as a chain of pairs.

[1]
In this book, we use list to mean a chain of pairs terminated by the end-of-list marker. In contrast, the term list structure refers to any data structure made out of pairs, not just to lists.
[2]
The value null is used in JavaScript for various purposes, but in this book we shall only use it to represent the empty list.
[3]
Our JavaScript environment provides a primitive function display_list that works like the primitive function display, except that it uses list notation instead of box notation.
2.2.1  
Representing Sequences