In case you get stuck anywhere, don’t be afraid to ask the coaches! They are here to help and will gladly explain everything to you! Take notes during the exercises. Even if you never look at them again, they will help you memorise things!
- Implement the todo class with a constructor that takes the title and the completed flag as arguments.
- The todo class should return the title via the
title
method and returns true or false when the todo is marked as completed or not via thecompleted?
method. - Add the feature to
TodoList
to add a new todo - Add the feature
TodoList
to remove an existing todo - Add the feature
TodoList
to unmark a completed todo