TodoPlay is a simple Todo App created while learning JavaScript fundamentals. The app runs using prompt-based input, where users can add tasks, list existing tasks, delete tasks by index, and quit when finished. This project is designed to practice loops, conditionals, arrays, and basic input/output handling.
- Add new tasks
- List all existing tasks
- Delete tasks by index
- Quit anytime by typing
quit - Beginner-friendly logic and structure
todoplay ├── index.html # Page structure, └── app.js # Program logic (prompt based)
- Using
prompt()for user input - Working with arrays (
push,splice) - Loops (
while,for) - Conditional statements (
if/else) - Console and screen output handling
- Download or clone the repository:
git clone https://github.com/shanusingh01/todoplay.git
- Open index.html in a browser.
- Use the commands shown on screen.
list → Show all tasks
add → Add a new task
delete → Remove a task by index
quit → Exit the app
This project is free to use for learning and practice.