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

假设我们有以下数组-

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' ]
]