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 trialTimothy Lucas
8,618 PointsHow can I apply the length property on the strings in the sort function?
I'm stuck on a code challenge, I'm trying to sort an array based on the length of each item. I know I can access the length of an item within an array by using array[1].length but I can't figure out how to use that within the sort function.
1 Answer
Lucas Krause
19,924 PointsAn array's sort()
method accepts one argument which is a comparison function.
The following code should do it:
array.sort(function(a, b){
return a.length-b.length;
});
Timothy Lucas
8,618 PointsTimothy Lucas
8,618 PointsThank you! I messed with that forever and was over complicating it. That was way easier that I was making it : )
Lucas Krause
19,924 PointsLucas Krause
19,924 PointsNo problem and good luck ;) Thanks for the vote :)
MUZ140146 Warrant Ganye
7,120 PointsMUZ140146 Warrant Ganye
7,120 PointsThanks So much! Was also stuck there but realised where the key was. Thanks again. :)