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 trialJoseph Walsh
1,390 PointsFunction addTwo
I watched the functions video and i am stumped on how to complete this challenge. some help and explanation would be appreciated!
3 Answers
Joel Bell
8,586 PointsInstead of just giving you the answer, can you describe what you've tried and your logic behind it. Or are you looking for a handout?
Joseph Walsh
1,390 PointsI just figured it out. Thanks Joel.
Stone Preston
42,016 PointsHere is a kind of outline on how to write a function that has a return type accepts two arguments (parameters in the case of a function definition):
returnType functionName(datatype argumentOne, datatype argumentTwo) {
//do whatever with the arguments that get passed in
return argument1 / argument 2;
}
you just have to modify it to match what the challenge wants.