Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

ammarkhan
Front End Web Development Techdegree Student 21,661 PointsHow to determine which code is eligible for function?
I know the code that repeat a lot can be transformed/moved into a function but how did Guil in this video choose that particular piece of code to make it into a function and what are key factor to choose a piece of code to be a function.

Luke Kennedy
11,661 PointsHi Ammarkhan,
For me the moment if I see any BLOCK of CODES that I would reusing or repeating again in the program. That would be the ideal choice as we do not need to write it over again.
Hope that helps.
Luke.
1 Answer

Vaidehi S
5,730 PointsCan the create remove button be put in a function and of yes then wht will be the parameter?
jacobb2
14,128 Pointsjacobb2
14,128 PointsPut your code in a function if it is something that you can reuse in the future.