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 trialJaskirat Singh
1,652 PointsHELP!
It says I am doing something wrong in the last line.... What AM I DOING WRONG!?!?
struct Expense {
var description: String
var amount: Double = 0.0
init (description: String) {
self.description = description
}
// add the calculateTaxes method here
// it should accept only one parameter named 'percentage' of type Double
func calculateTaxes(percentage: Double) -> Double {
return (self.amount * (percentage/100))
}
}
var item = Expense(description: "This is so Expensive!")
Expense.amount = 100
2 Answers
Avi Zolty
2,001 Pointsitem.amount
Expense is just the name of the struct. You initialized Expense with a description and set it to a variable named item. Now item inherits the properties and methods of Expense including the "amount" property which can be accessed through dot notation as item.amount
kjvswift93
13,515 Pointsstruct Expense {
var description: String
var amount: Double = 0.0
init (description: String) {
self.description = description
}
func calculateTaxes(percentage: Double) -> Double {
return (self.amount * (percentage/100))
}
}
var item = Expense(description: "Description")
item.amount = 100