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 trialFrank Greek
Full Stack JavaScript Techdegree Student 981 PointsReturn elements
Do I understand it right?
once we created second array[] with return key we basically come back to the first array?
Is this what is Return for ?
Thank you for response
2 Answers
Steven Parker
231,210 PointsIf you are talking about the createDeck function, the first two arrays (suites and ranks) are used to build the third one (card). The "return" statement just ends the function and passes back the shuffled version of the 3rd array to the code that called it.
If that's not what you are asking about, please give more details and perhaps show the code in question.
Frank Greek
Full Stack JavaScript Techdegree Student 981 PointsPlease could you explain me why we put "return" statement outside the function curly braces?
Steven Parker
231,210 PointsSteven Parker
231,210 PointsAs the instructor says in the video, the
return
goes "just before the final closing brace". This puts it inside the function.In fact, a
return
statement can only be used inside a function. Placing one outside of a function will cause an error.