From 3db7654b32c13a5c72f01cd72a74ad63783de7fb Mon Sep 17 00:00:00 2001 From: Aleksandras Date: Fri, 25 Aug 2023 18:49:56 +0300 Subject: [PATCH] Missing line of code --- 1-js/06-advanced-functions/01-recursion/article.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1-js/06-advanced-functions/01-recursion/article.md b/1-js/06-advanced-functions/01-recursion/article.md index 5ae8944742..ddb9fce19e 100644 --- a/1-js/06-advanced-functions/01-recursion/article.md +++ b/1-js/06-advanced-functions/01-recursion/article.md @@ -488,6 +488,7 @@ 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