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 trial

JavaScript

Timothy Lucas
Timothy Lucas
8,618 Points

How 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
Lucas Krause
19,924 Points

An 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
Timothy Lucas
8,618 Points

Thank you! I messed with that forever and was over complicating it. That was way easier that I was making it : )

Lucas Krause
Lucas Krause
19,924 Points

No problem and good luck ;) Thanks for the vote :)

Thanks So much! Was also stuck there but realised where the key was. Thanks again. :)