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 trialYevgeny Yermakov
10,979 PointsAnonymous function
Rewatched the previous video, like, 10 times but still can’t get through this Quiz Question. It seems like I’ve tried every possible option but my answer is still incorrect :–(
This is the question I don’t know the answer to: Let’s apply our anonymous function. We have an array of integers called numbers, let’s use our anonymous function on numbers.
val numbers = Array(5, 10, 15, 20, 25)
val result = numbers.___((x: Int)___ x + 10)
(my answer to the second question in this quiz is correct)
1 Answer
Fahad Mutair
10,359 Pointsval result = numbers.map((x: Int) => x + 10)
Yevgeny Yermakov
10,979 PointsYevgeny Yermakov
10,979 PointsGreat! That worked. Thank you very much!