如何正确地对整数数组进行排序?
我们需要编写一个包含数字数组的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 ]
热门推荐
10 小红书平安祝福语简短
11 生日祝福语大全女孩简短
12 收生日红包祝福语 简短
13 领证幽默祝福语简短
14 法考面试祝福语简短
15 老哥出门祝福语简短语
16 送灯祝福语简短独特
17 幼儿狗年祝福语大全简短
18 好听的元旦简短祝福语