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 trialJimel Atkins
2,093 PointsJavascript Basics, when learning about functions Challenge: Create a max function, how do i add numbers to the parameter
I wrote
function Max(5, 12) {
}
function Max(5 12) {
}
1 Answer
tyrone taylor
7,765 Pointstry this function max(num1, num2){} and you call the function like max(12, 14)
Jimel Atkins
2,093 PointsJimel Atkins
2,093 PointsTyrone
Thanks a lot, the next step is:
The function should return the larger of the two numbers HINT: will need a conditional statement to test 2 parameters to see which is larger.
So i have written
function max (num5, num12) { var answer =("num5, num12") if (5 < 12) { } return answer }