-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.js
49 lines (36 loc) · 1.19 KB
/
new.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Get the input field, button, and task list elements
const taskInput = document.getElementById('task-input');
const addTaskBtn = document.getElementById('add-task-btn');
const taskList = document.getElementById('task-list');
// Create an array to store tasks
let tasks = [];
// Add an event listener to the add task button
addTaskBtn.addEventListener('click', () => {
// Get the task input value
const task = taskInput.value.trim();
console.log(task);
// Check if the task is not empty
if (task) {
// Add the task to the tasks array
tasks.push(task);
// Clear the input field
taskInput.value = '';
// Update the task list
updateTaskList();
// Display a success message
alert('Task added successfully!');
// Disable the add task button
}
});
// Function to update the task list
function updateTaskList() {
taskList.innerHTML = '';
// Loop through the tasks array and create list items
tasks.forEach((task, index) => {
const taskListItem = document.createElement('li');
taskListItem.textContent = task;
taskList.appendChild(taskListItem);
});
}
// Call the updateTaskList function to display the initial task list
updateTaskList();