JS 陣列排序範例

馬老師離開待了約十幾年的教學界,目前在外商科技公司擔任Senior Consultant的工作,原因當然很多,未來有空再慢慢發文章分享,剛好最近有點時間,怕以後忘記,把最近專案中用到的一些程式筆記下來,如果大家有需要,也可以參考使用,這一篇是關於Javascript陣列排序的部分。

通常若有較多的內容需要儲存,變數就沒有陣列來的好用,所以陣列是拿來儲存大量的資料時所使用的,且儲存在裡面的資料,還可以選擇經過排序之後再呈現至畫面上,例如:

var name = ["stanley", "jack", "anita" , "mary"];

name.sort() //依照字母排序
console.log(name); // 輸出 ["anita", "jack", "mary", "stanley"]

names.reverse() //反轉陣列內容
console.log(name); //輸出 ["stanley", "mary", "jack", "anita"]

但若我們同時有多個陣列,但希望以其中之一的內容排序時,也可以同步更新到另外一個陣列,該如何處理呢?可以參考以下的方式:

var name = ["stanley", "jack", "anita" , "mary"];
var gender = ["male" , "male" , "female" , "female"];
var score = [30, 10, 40 , 80];
var ID = ["S1" , "S2" , "S3" , "S4"];

console.log("name : " + name + "; score : " + score + "; gender : " + gender + "; ID : " + ID);
/*
排序前
name : stanley,jack,anita,mary;
score : 30,10,40,80;
gender : male,male,female,female;
ID : S1,S2,S3,S4;
*/

var list = [];
for (var i = 0; i < name.length; i++){
  list.push({
    'name': name[i],
    'score': score[i],
    'gender': gender[i],
    'ID': ID[i]
  });
}

list.sort(function(a, b) {
  return ((a.name < b.name) ? -1 : ((a.name == b.name) ? 0 : 1));
});

for (var i = 0; i < list.length; i++) {
  name[i] = list[i].name;
  score[i] = list[i].score;
  gender[i] = list[i].gender;
  ID[i] = list[i].ID;
}

console.log("name : " + name + "; score : " + score + "; gender : " + gender + "; ID : " + ID);
/*
排序後
name : anita,jack,mary,stanley;
score : 40,10,80,30;
gender : female,male,female,male;
ID : S3,S2,S4,S1;
*/

若是希望按照分數排序,則可以將sort function 修改為下:

//score 由小到大
list.sort(function(a, b) {
  return a.score - b.score
});

//score 由大到小
list.sort(function(a, b) {
  return b.score - a.score
});

補充:

上述的排序內容均以英文和數字為主,若是遇到中文可使用localeCompare進行,而排序的方式是漢語拼音順序,以下為範例:

var arr = ["二","五","四","一","三"];
//漢語拼音:一[yi], 二[er], 三[san], 四[si], 五[wu]
console.log("排序前:" + arr); // 排序前:二,五,四,一,三
arr.sort(function(a,b){
	return a.localeCompare(b, 'zh'); //排序後:二,三,四,五,一
});
console.log("排序後:" + arr); 

var arr = ["中文","英語","法國話", "京片子", "中國"];
//中文[zhong wen], 英語[ying yu], 法國話[fa guo hua], 京片子[jing pian zi], 中國[zhong guo]
console.log("排序前:" + arr); //排序前:中文,英語,法國話,京片子,中國
arr.sort(function(a,b){
	return a.localeCompare(b, 'zh');
});
console.log("排序後:" + arr); //排序後:法國話,京片子,英語,中國,中文


var arr = ["中文","英语","法国话", "京片子", "中国"];
console.log("排序前:" + arr); //排序前:中文,英语,法国话,京片子,中国
arr.sort(function(a,b){
	return a.localeCompare(b, 'zh');
});
console.log("排序後:" + arr); //排序後:法国话,京片子,英语,中国,中文

You may also like...

7,868 Responses

  1. Trefyuy表示:

    Привет, друзья!
    Всегда считал, что покупка диплома о высшем образовании — это миф и невозможно. Но, к счастью, оказался неправ. Сначала искал информацию по теме: купить диплом историка, купить диплом в новоалтайске, купить диплом в кстово, купить диплом в пскове, #купить диплом физика, а затем переключился на дипломы вузов. Подробности здесь: http://ukvg-nn.ru/index.php?subaction=userinfo&user=eveloboma
    Оказалось, что все реально и легально, со специальными условиями и упрощенными программами. Теперь у меня диплом московского вуза нового образца, что я настоятельно рекомендую и вам!
    Успехов в учебе!

  2. Great article. I will be facing many of these issues as well..

  3. I would not have been able to quit smoking without e cigarettes and I’m steadily cutiing down my nicotine intake. In my view e cigarettes are a great cessation aid.

  4. My brother recommended I might like this website. He was entirely right. This post truly made my day. You cann’t imagine simply how much time I had spent for this info! Thanks!

  5. RobertHop表示:

    The new Premier League https://premier-league.chelsea-fr.com season has gotten off to an intriguing start, with a new-look Chelsea looking to return to the Champions League, but serious challenges lie ahead.

  6. we always keep track of our family tree because it is exciting to know the family tree::

  7. tiny ants表示:

    What I couldnt give to learn how you got your design to be so crazy! I mean it. Besides the blog just being awesome, this page is too sweet! Its not too flashy. It doesnt do too much with colours and things and the videos you use are perfect for this topic! Really, awesome blog.

  8. orkin prices表示:

    As I website possessor I think the written content here is rattling wonderful, thankyou for your efforts.

  9. Diplomi_gfPa表示:

    купить высшее диплом спб купить высшее диплом спб .

  10. Diplomi_apei表示:

    диплом о среднем медицинском образовании купить ast-diploms.com .

  11. Hey mate, .This was a great post for such a complicated subject to discuss. I look forward to seeing many more excellent posts like this one. Thanks

  12. All in all I see Horrible Bosses, you could do a lot worst, if you’re one of the people who the films’ content appeals to see it, it would be a safe choice.

  13. clay garden pots are great but if you want a cheaper alternative, you can always use those plastic garden pots~

  14. I love reading your blog because it has very interesting topics.”-*:.

  15. Diplomi_gaet表示:

    купить гос диплом diplomyx.com .

  16. Mitchelvom表示:

    Explore the rich history and unrivaled atmosphere of the iconic Old Trafford Stadium https://old-trafford.manchester-united-fr.com, home of one of the world’s most decorated football clubs, Manchester United.

  17. Diplomi_rvKn表示:

    диплом стандарт фгос спо купить asxdiplomik.com .

  18. Excellent read, I just passed this onto a colleague who was doing a little research on that. And he just bought me lunch because I found it for him smile Therefore let me rephrase that: Thanks for lunch!

  19. Uazrzcn表示:

    Здравствуйте!
    Заказать диплом о высшем образовании
    Мы предлагаем выгодно приобрести диплом, который выполнен на бланке ГОЗНАКа и заверен печатями, водяными знаками, подписями должностных лиц. Данный документ пройдет любые проверки, даже с использованием специальных приборов. Достигайте свои цели максимально быстро с нашей компанией.
    Где заказать диплом по необходимой специальности?
    https://zdsim.ru/wiki/index.php/Диплом_для_успешной_карьеры:_просто_и_доступно
    Окажем помощь!.

  20. MarvinTer表示:

    How Taylor Swift https://midnights.taylor-swift-fr.com reinvented her sound and image on the intimate and reflective album “Midnights,” revealing new dimensions of her talent.

  21. WilliamVah表示:

    An exploration of Nicole Kidman’s https://watch.nicole-kidman-fr.com career, her notable roles, and her continued quest for excellence as an actress.

  22. Danielshazy表示:

    A fascinating story about how Elon Musk https://spacex.elon-musk-fr.com and his company SpaceX revolutionized space exploration, opening new horizons for humanity.

  23. Nine Things That Your Parent Teach You About Hyundai
    I20 Key Fob hyundai I20 key

  24. Andreged表示:

    The inspiring story of Travis Scott’s https://yeezus.travis-scott-fr.com rise from emerging artist to one of modern hip-hop’s brightest stars through his collaboration with Kanye West.

  25. Greetings! Very useful advice within this article! It is the little changes which will make the greatest changes. Thanks a lot for sharing!

  26. GalileoFX表示:

    An interesting discussion is worth comment. I think that you ought to write more about this subject, it may not be a taboo subject but typically people do not talk about such issues. To the next! Cheers!

  27. rat paste表示:

    I genuinely enjoy your web page, however I’m having a difficulty: anytime I load one of your post in Safari, the right of the webpage is screwed — it is strange. May I mail you a screenshot? Anyways, continue your good job; I truly appreciate reading you.

  28. Do you people have a myspace fan webpage? I looked for for one on facebook or myspace but couldn’t discover it, I would love to become a fan!

  29. mosquitoes表示:

    It’s in reality a nice and useful piece of information. I am satisfied that you shared this helpful info with us. Please stay us informed like this. Thank you for sharing.

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。