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,841 Responses

  1. Cazrsmz表示:

    Привет, друзья!
    Мы готовы предложить документы техникумов, которые находятся в любом регионе Российской Федерации. Вы сможете купить диплом от любого заведения, за любой год, указав подходящую специальность и хорошие оценки за все дисциплины. Документы печатаются на “правильной” бумаге самого высокого качества. Это позволяет делать государственные дипломы, не отличимые от оригинала. Документы будут заверены всеми обязательными печатями и подписями.
    http://www.cyberpinoy.net/read-blog/33705

  2. Rogertaith表示:

    Cristiano Ronaldo https://al-nassr.cristiano-ronaldo.ae is one of the greatest names in football history, with his achievements inspiring millions of fans around the world.

  3. Sazrrba表示:

    Привет, друзья!
    Легальная покупка диплома ВУЗа с сокращенной программой обучения
    snaprama.com/read-blog/923
    Будем рады вам помочь!.

  4. CharlesDob表示:

    Karim Benzema https://al-ittihad.karimbenzema.ae is a name worthy of admiration and respect in the world of football.

  5. Veterans Disability Lawyers Tools To Help You Manage Your
    Daily Lifethe One Veterans Disability Lawyers Trick That Should Be
    Used By Everyone Know veterans disability Lawyers

  6. JeffreyVek表示:

    RDBox.de https://rdbox.de bietet schallgedammte Gehause fur 3D-Drucker, die eine sehr leise Druckumgebung schaffen – nicht lauter als ein Kuhlschrank. Unsere Losungen sorgen fur stabile Drucktemperatur, Vibrationsisolierung, Luftreinigung und mobile App-Steuerung.

  7. ngentot pepek表示:

    Very good post. I’m going through a few of these issues as well..

  8. You Are Responsible For A Link Alternatif Borneoslot Budget?
    12 Best Ways To Spend Your Money http://www.287682.xyz

  9. ngentot pepek表示:

    I was very happy to find this great site. I want to to thank you for your time due to this fantastic read!! I definitely really liked every part of it and I have you book-marked to see new information on your website.

  10. ngentot memek表示:

    Way cool! Some extremely valid points! I appreciate you writing this post and also the rest of the website is also very good.

  11. Eanrkfn表示:

    Добрый день!
    Мы изготавливаем дипломы психологов, юристов, экономистов и других профессий по приятным тарифам.
    smart-f.eu/%D0%B4%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC%D1%8B-%D0%BA%D1%83%D0%BF%D0%B8%D1%82%D1%8C-%D0%B4%D0%B2%D0%B3%D1%83%D0%BF%D1%81/

  12. Are You In Search Of Inspiration? Try Looking Up Link Alternatif Borneoslot http://www.287682.xyz

  13. ngentot memek表示:

    Everything is very open with a precise clarification of the issues. It was definitely informative. Your website is very helpful. Thanks for sharing.

  14. Dnrtbhw表示:

    Привет!
    Приобрести документ института можно в нашей компании в Москве.
    ast-diplom.com/kupit-diplom-magistra
    Удачи!

  15. Mazroqy表示:

    Добрый день!
    Как безопасно купить диплом колледжа или ПТУ в России, что важно знать
    http://www.industrialagency.org/blogs/69281/%D0%94%D0%B8%D0%BF%D0%BB%D0%BE%D0%BC%D1%8B-%D0%B4%D0%BB%D1%8F-%D0%A3%D1%81%D0%BF%D0%B5%D1%88%D0%BD%D0%BE%D0%B9-%D0%9A%D0%B0%D1%80%D1%8C%D0%B5%D1%80%D1%8B

  16. Xazrmtp表示:

    Здравствуйте!
    Ьожем предложить документы техникумов, которые находятся на территории всей РФ. Вы имеете возможность купить качественно сделанный диплом от любого учебного заведения, за любой год, включая документы старого образца. Дипломы и аттестаты делаются на “правильной” бумаге высшего качества. Это позволяет делать настоящие дипломы, не отличимые от оригинала. Документы будут заверены необходимыми печатями и подписями.
    Мы изготавливаем дипломы любой профессии по доступным ценам. Цена может зависеть от выбранной специальности, года получения и образовательного учреждения. Всегда стараемся поддерживать для заказчиков адекватную ценовую политику. Важно, чтобы документы были доступны для большинства наших граждан.
    arusak-diploms-srednee.ru/kupit-diplom-kandidata-nauk  
    Успешной учебы!

  17. kontol besar表示:

    Spot on with this write-up, I honestly believe this amazing site needs a lot more attention. I’ll probably be returning to read more, thanks for the info.

  18. Hi, I do think this is a great web site. I stumbledupon it 😉 I will revisit yet again since i have bookmarked it. Money and freedom is the best way to change, may you be rich and continue to guide other people.

  19. 10 Best Facebook Pages Of All-Time About Malpractice Attorneys Malpractice Law Firms

  20. Charleskip表示:

    Kobe Bryant https://los-angeles-lakers.kobebryant-ar.com also known as the “Black Mamba”, is one of the most iconic and iconic figures in NBA history.

  21. Diplomi_biEa表示:

    Добрый день!
    Заказать документ о получении высшего образования можно в нашей компании в столице.
    diploms-x.com/kupit-diplom-sankt-peterburg

  22. ngentot pepek表示:

    Pretty! This has been an incredibly wonderful article. Thanks for providing this info.

  23. The Most Successful Malpractice Case Gurus Are Doing Three Things malpractice Lawyer

  24. Starting A Greeting Card Business – Is Online The Most Suitable Option? 직장인 대출 (adrenalineenergy.com)

  25. How Online Slots Revolutionized The Slots World 에볼루션 점검 (https://www.72c9aa5escud2b.com/)

  26. Waynenag表示:

    Да мы с тобой те, кто даст Вам этот самый незабываемый чувство полуфабрикатов https://ecofood38.ru/ изготовленных по СТАНДАРТ

  27. link bokep表示:

    An intriguing discussion is worth comment. I do think that you ought to write more about this issue, it might not be a taboo subject but typically folks don’t speak about these issues. To the next! Many thanks!

  28. ArthurDep表示:

    Автор производим Пельмени, Котлеты,Тефтели на 100% БЕЗ Химии, БЕЗ ГМО (а) также прочего. Экспресс-доставка по Иркутску
    https://olkhon138.ru/

發佈留言

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