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 trialCarl Baker
2,491 PointsI am completely lost now, I dont know what it is but I am struggling with JavaScript. I need my hand held I think lol.
I don't know what it is, I have been sitting here for three days trying to figure this stuff out and Im still not getting it. I know Im new to this and it is all basically a completely different language to me. I really could use a step by step walk through, or someone sitting by my side I think. What am I not getting?
function max(1, 2) {
var numbers = 1 < 2;
return max;
}
3 Answers
Rich Donnellan
Treehouse Moderator 27,696 PointsI normally don't like posting solutions, but it might make more sense to break down.
function max(num1, num2) {
if (num1 > num2) { // first check
return num1; // will only return num1 IF it's greater than num2
} else { // if first check returns false
return num2; // return num2
}
}
"Real world" application:
max(3, 6); // call max function passing in parameters
function max(3, 6) {
if (3 > 6) { // false
return 3; // will not return since check is false
} else {
return 6; // will return
}
}
Follow?
βRich
Carl Baker
2,491 Pointsyes thank you, I dont know why Im having these issues, but I appreciate you taking the time to walk me through it.
Rich Donnellan
Treehouse Moderator 27,696 PointsSure thing. How about some upvote or best answer love?
Rich Donnellan
Treehouse Moderator 27,696 PointsCarl,
I'll try to break it down as simple as possible.
function returnValue(arg) { //create function named returnValue with one argument; arg in this example
return arg; // returns the argument
}
If we were pass is real values, it may look something like this:
function returnValue(number) {
return number;
}
returnValue(10); // calling the function will return what is passed (10).
It might help to read up some more on any topics or syntax you are having troubles with. Check out the Mozilla Developer Network (MDN).
Also, use the search function as a lot of your questions may have already been answered!
Good luck!
βRich
Carl Baker
2,491 PointsThank you Rich
Carl Baker
2,491 PointsI guess I posted the wrong one, I took a screen shot but I am having issues putting it in my comment. I pretty new to the tech world, I though I new basic stuff, but I am going nuts. How do i post the screen shot of what I am doing to continue to get help?
Carl Baker
2,491 PointsSorry about that, still somewhat new to all this.
Carl Baker
2,491 PointsCarl Baker
2,491 PointsChallenge Task 1 of 2
Here's a simple challenge: create a function named returnValue() that accepts a single argument, then returns that argument. This isn't a useful function, but we want to make sure you know how to create a function that can accept information when it is called.