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 trialElliott Walker
259 PointsWhat is the difference?
Hello everyone.
What is the difference between
todo.count
and
println (todo.count)
1 Answer
Chris George
9,373 PointsHey Elliott, I'm guessing you're confused because we use the playgrounds for this course. The playgrounds show you a result of the line of code that you type, and if you type todo.count and println(todo.count), it will look like the same output. This, however, is not the case. If you typed out todo.count in a real program, the computer would perform the calculation, but wouldn't do anything with it. If you typed out println(todo.count) in a program, the computer would see that you want the length of the todo array to be printed to the console. I hope this helps.