如何正确地对整数数组进行排序?

我们需要编写一个包含数字数组的JavaScript函数。

然后,该函数应在适当的位置对数字数组进行排序(升序或降序)。

示例

为此的代码将是-

const arr = [2, 5, 19, 2, 43, 32, 2, 34, 67, 88, 4, 7];
const sortIntegers = (arr = []) => {
   const sorterAscending = (a, b) => {
      return a - b;
   };
   const sorterDescending = (a, b) => {
      return b - a;
   };
   arr.sort(sorterAscending);
};
sortIntegers(arr);
console.log(arr);

输出结果

控制台中的输出将是-

[
   2, 2, 2, 4, 5,
   7, 19, 32, 34, 43,
   67, 88
]