fix typo
This commit is contained in:
parent
162280b6d2
commit
0903209ce3
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ list.next.next.next = { value: 4 };
|
|||
list.next.next.next.next = null;
|
||||
```
|
||||
|
||||
Here we can even more clearer see that there are multiple objects, each one has the `value` and `next` pointing to the neighbour. The `list` variable is the first object in the chain, so following `next` pointers from it we can reach any element.
|
||||
Here we can even more clearly see that there are multiple objects, each one has the `value` and `next` pointing to the neighbour. The `list` variable is the first object in the chain, so following `next` pointers from it we can reach any element.
|
||||
|
||||
The list can be easily split into multiple parts and later joined back:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue