Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AngularJS Basics (1.x) Getting Started with Angular Angular, an Overview

Jaime Rios
PLUS
Jaime Rios
Courses Plus Student 21,100 Points

Why are to do lists so important?

Sorry if I came as little naive, but this is the second course on Treehouse that I take in which they make to do lists. I did learn how to do them, but what kind of skills does it show that I have? Should I include one in my portfolio as a Front End Developer? I'm really excited about JavaScript on the front-end but I want to read some other opinions. Thanks in advance for your answers.

2 Answers

I don't feel the 'Todo list' project is meant to show that you have any specific skill. They are simply a good learning tool because they provide a simple and complete implementation that could easily be extended. Once you have a ToDo list working, you could use these skills to create your own simple project, and build from it.

A Todo list has:

  • A managed collection, like a list.
  • State (checked/unchecked)
  • Some kind of data layer
  • Some kind of presentation layer

Together these features scale well, and can be extended to support things far more complex and impressive. For example - You could take the ToDo list, and turn it into a shopping list. You obviously have implemented some kind of Collection to store your list items, so you could use 2 collections; one to store what is on your shopping list, and one to store things you can add to your shopping list (Pre filled with apples and pears and stuff...). You could then extend this to 3 collections, and have multiple shopping lists, so you can show 'shopping list histories' and maybe then extend that with some cooler features leveraging the data, like predicting what a user will add to a new list based on what they have bought before...

As far as portfolio assets go, a simple Todo list isn't impressive nor of value in my opinion, but you could make it so by using your creativity to extend it, and make it something awesome! If in doubt, look at other people's portfolios and find some you feel are impressive, and see what features their work exhibits that you could try to implement your own way in your own projects. Ultimately, only you should decide what you exhibit on your portfolio, as it is a demonstration of your skills and work - not someone else.

I can only speculate on why Treehouse include to-do lists as exercises, I guess they are a simple enough concept, not too hard to make and they are also useful in real life.

On a side note, you should have some tool to organize your workflow. As for myself I keep a diary, detailing what I have done in a given day and a todo list, with the stuff I need to get done. I don't use any app, though, just a text editor, which gets the job done. Other than that, much more important than an app is that you know the basics of productivity. Get David Allen's Getting Things Done or Leo Babauta Zen's to Done, which are more than enough to get you started.