bubble_chart StackLab

Todo App HTML + JS + Git + GitHub

7 steps · pending Not started · person_outline Guest
arrow_back Back

READ: Display the Tasks

The Read operation displays the tasks in the task list.

code html
<ul id="taskList">
    Tasks goes here
</ul>
JavaScript adds each task to the list:
code javascript
document.getElementById("taskList").appendChild(li);
The task entered by the user is displayed dynamically on the page. CRUD Operation: READ

login Sign in to save your progress permanently. info Progress is saved in your browser session
format_list_numbered Step 4 of 7