From e1ffdbcaf8bfcbc0cff82a247c848226a170bcde Mon Sep 17 00:00:00 2001 From: hnrykm <122317795+hnrykm@users.noreply.github.com> Date: Wed, 24 Apr 2024 12:44:43 -0400 Subject: [PATCH] fix(curriculum): description of Learn localStorage by Building a Todo App - Step 18 (#54510) --- .../650300a25b6f72964ab8aca6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/650300a25b6f72964ab8aca6.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/650300a25b6f72964ab8aca6.md index aea676c4418..05d06ab9b7b 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/650300a25b6f72964ab8aca6.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/650300a25b6f72964ab8aca6.md @@ -15,7 +15,7 @@ To make the `id` more unique, add another hyphen and use Date.now(). console.log(Date.now()); // 1628586800000 ``` -To see the new result, click on the `"Add New Task"` button. Then add a title of `WALK DOG` and click on the `"Add Task"` button. Open up the console to see the result with a random number added. +To see the new result, click on the `"Add New Task"` button. Then add a title of `WALK DOG` and click on the `"Add Task"` button. Open up the console to see the result. # --hints--