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 trialRustam Ilyassov
5,496 PointsHow do we insert conditional statement inside the function?
Could somebody please help with this task? as Im not quite sure how do you insert a conditional statement within the function?
function max (numberOne, numberTwo) {
if (numberOne === max) {
console.log = "Max number is " + numberOne;
} else if {
(numberTwo === max) {
console.log = "Max number is " + numberTwo;
}
}
1 Answer
Sean T. Unwin
28,690 PointsHi Rustam Ilyassov,
You have already included a conditional statement. An if ... else
statement is a conditional.
What you need to do in the challenge is compare the 2 numbers passed to the function and return whichever one is bigger.
In pseudo-code this could be written as:
function max(a, b) {
// if a is greater than b
// return a
// else
// return b
}
I hope that helps. :)