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 trialKanish Chhabra
2,151 PointsWhat are gettable and settable properties?
What are gettable and settable properties?
James Boonstra
3,803 PointsIs this like in Java when we use Setter and Getter methods?
Natalia Khachapuridze
5,579 PointsNatalia Khachapuridze
5,579 PointsGettable properties are methods that present themselves as properties. They return/get property values. For example: They can get a distance in miles from a stored property which is stored in kilometers. Although you cant change property values with get. Settable properties can set/update values.