javascript 在Javascript中按字母顺序排序数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 在Javascript中按字母顺序排序数组相关的知识,希望对你有一定的参考价值。

//Sort items in an array alphabetically with Array sort

var nonSortedArray = ['hi', 'yo', 'whatup', 'bye', 'lol'];
var sortedArray = nonSortedArray.sort(function (a, b) {
      if (a < b) return -1;
      else if (a > b) return 1;
      return 0;
    });
console.log(sortedArray); // ["bye", "hi", "lol", "whatup", "yo"]

//Sort items in reverse alphabetical order like so:

var nonSortedArray = ['hi', 'yo', 'whatup', 'bye', 'lol'];
var reverseSortedArray = nonSortedArray.sort(function (a, b) {
      if (a > b) return -1;
      else if (a < b) return 1;
      return 0;
    });
console.log(reverseSortedArray); // ["yo", "whatup", "lol", "hi", "bye"]

以上是关于javascript 在Javascript中按字母顺序排序数组的主要内容,如果未能解决你的问题,请参考以下文章

在Javascript中按范围设置选择

在Javascript中按多个条件过滤数组

在javascript数组中按值获取索引

在 JavaScript 对象数组中按 id 查找对象

javascript 在Tachein中按类添加交互

语句没有在javascript中按顺序运行[重复]