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.

bhupendra rana
Pro Student 5,610 PointsCreate a new function named max which accepts two numbers as arguments (you can name the arguments, whatever you would l
Create a new function named max which accepts two numbers as arguments (you can name the arguments, whatever you would like). The function should return the larger of the two numbers.
HINT: You'll need to use a conditional statement to test the 2 parameters to see which is the larger of the two.
function max(n1 , n2){
var n1 = prompt("Enter n1");
var n2 = prompt("Eneter n2");
If (parseInt(n1) > parseInt(n2){
alert
}
3 Answers

Antony .
2,824 PointsDon't worry bhupendra rana
Programming is meant to be taken in a passive manner, not in a rushing manner. Take as many breaks as you need and ask as many questions as you want. We're always here to help!

Antony .
2,824 PointsHi, bhupendra rana
For this quiz, you don't need to overthink the question. I'll show you step by step on what to do.
First it's asking to create a function
named max
that accepts two numbers as arguments
function max(n1, n2) {
}
and finally it's asking to use a conditional statement to output the largest number
function max(n1, n2) {
if(n1 > n2) { //if variable n1 is larger than variable n2
return n1; //return or give me this variable/number back.
} else { //if not
return n2 //return me this variable
}
}

bhupendra rana
Courses Plus Student 5,610 Pointsthank you antony......i am over thinking .