en.javascript.info icon indicating copy to clipboard operation
en.javascript.info copied to clipboard

Missing line of code

Open Alexandre887 opened this issue 2 years ago • 0 comments

According to this SVG:

image

...There should be one more line in the code below:

let list = { value: 1 };
list.next = { value: 2 };
list.next.next = { value: 3 };
list.next.next.next = { value: 4 };
@@ list.next.next.next.next = null; @@

// prepend the new value to the list
list = { value: "new item", next: list };

Alexandre887 avatar Aug 25 '23 16:08 Alexandre887