admin管理员组文章数量:1344628
I have the following arrays:
/
I need to sort the arrays by their length.
How to find out which one is the largest, the second largest, the third largest, and the least array?
For example, I have the following dummy function, that can get us the second largest array:
/
What is the above dummy function algorithm?
Thank you in advance
I have the following arrays:
http://jsfiddle/3NZsK/
I need to sort the arrays by their length.
How to find out which one is the largest, the second largest, the third largest, and the least array?
For example, I have the following dummy function, that can get us the second largest array:
http://jsfiddle/WPRYf/
What is the above dummy function algorithm?
Thank you in advance
Share Improve this question edited Jun 26, 2012 at 12:49 Bayu asked Jun 26, 2012 at 11:30 BayuBayu 4672 gold badges10 silver badges19 bronze badges 15- sorry, what? you mean you want to sort the arrays by their length? – gexicide Commented Jun 26, 2012 at 11:32
- I want to find out which one is the largest, the second largest, the third largest and the smallest in quantity. I need to assign them into above variables (please see my explanation) – Bayu Commented Jun 26, 2012 at 11:37
- I think when @gexicide said "What?" he meant that your explanation doesn't make a lot of sense, and he would like you to clarify it. – phenomnomnominal Commented Jun 26, 2012 at 11:40
- Ok. Yes, I want to sort the arrays by their length. How can I do that? – Bayu Commented Jun 26, 2012 at 11:43
- 1 In that case the second fiddle example is wrong. – Angel Commented Jun 26, 2012 at 11:50
2 Answers
Reset to default 12var
a = ["a", "a"];
b = ["b", "b", "b", "b"],
c = ["c", "c", "c"],
d = ["d"],
container = [a, b, c, d];
container.sort(function (a, b) {
return b.length - a.length;
});
console.log(container);
container
will be sorted from longest (most elements) to shortest (least number of elements). Access it as:
container[0] // longest
container[1] // 2nd longest
// ...
http://jsfiddle/pSRVq/
You can find the length of the array using the length method and then sort these according to their values to find the largest, second largest array.
本文标签: javascriptSort Arrays By Their LengthStack Overflow
版权声明:本文标题:javascript - Sort Arrays By Their Length - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742455a2531145.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论