Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การเรียงลำดับอาร์เรย์ด้วยฟังก์ชันลด JavaScript - JavaScript


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่ใช้อาร์เรย์ของตัวเลข ฟังก์ชันควรจัดเรียงอาร์เรย์โดยใช้เมธอด Array.prototype.sort() เราจำเป็นต้องใช้เมธอด Array.prototype.reduce() เพื่อจัดเรียงอาร์เรย์

สมมติว่าต่อไปนี้คืออาร์เรย์ของเรา –

const arr = [4, 56, 5, 3, 34, 37, 89, 57, 98];

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

// we will sort this array but
// without using the array sort function
// without using any kind of conventional loops
// using the ES6 function reduce()
const arr = [4, 56, 5, 3, 34, 37, 89, 57, 98];
const sortWithReduce = arr => {
   return arr.reduce((acc, val) => {
      let ind = 0;
      while(ind < arr.length && val < arr[ind]){
         ind++;
      }
      acc.splice(ind, 0, val);
      return acc;
   }, []);
};
console.log(sortWithReduce(arr));

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ในคอนโซล -

[
 98, 57, 89, 37, 34,
  5, 56,  4,  3
]