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 trialSimon Dein
4,772 PointsWhy not make the 'idx' inside the function?
Is there a reason for why Kenneth takes the 'idx'-input outside the function and passing it to the function instead of just putting it all inside?
In my script i take the input AND execute the the removal inside the function without any trouble. I was just thinking the "main"-script would look cleaner like that.
Is there a reason for this? Is it wrong in any way to do it like i've done?
1 Answer
Steven Parker
231,236 PointsIt doesn't make any difference if the function is only used one time.
But writing the function to take the argument makes it possible to re-use the function in other situations where the item to be removed is already known and input will not be required.