如何按子数组中的第一个项对数组进行排序 - JavaScript?

javascriptweb developmentfront end technologyobject oriented programming

假设我们有以下数组 −

var studentDetails =
[
   [89, "John"],
   [78, "John"],
   [94, "John"],
   [47, "John"],
   [33, "John"]
];

我们需要根据第一个项(即 89、78、94 等)对数组进行排序。为此,请使用 sort()。

示例

以下是代码 −

var studentDetails =
   [
      [89, "John"],
      [78, "John"],
      [94, "John"],
      [47, "John"],
      [33, "John"]
   ];
studentDetails.sort((first, second) => second[0] - first[0])
console.log(studentDetails);

要运行上述程序,您需要使用以下命令 −

node fileName.js.

这里,文件名是 demo293.js。

输出

这将在控制台上产生以下输出 −

PS C:\Users\Amit\javascript-code> node demo293.js
[
   [ 94, 'John' ],
   [ 89, 'John' ],
   [ 78, 'John' ],
   [ 47, 'John' ],
   [ 33, 'John' ]
]

相关文章