Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

sort method

// Sort method

// const arr = [3,53,423,534,3];
// console.log(arr.sort());

// const names = ["fahad", "taha", "salman", "mojeeb"]; // This looks good but if we solve this sort this like with capital letters it'll give first priority to capital letter then it'll sort small letters the example is given below

// names.sort();
// console.log(names);

// Example
// const namesWithCapitalLetters = ["fahad", "Taha", "salman", "mojeeb"];
// namesWithCapitalLetters.sort();

// console.log(namesWithCapitalLetters);

// That's how it works :)

// How to get expected output

// const arr = [3,53,423,534,3];
// console.log(arr.sort()); ---> We're not getting expected output while we're doing this but there is a way with that we can get our expected output

// The way

const arr = [3, 53, 423, 534, 3];
console.log(arr.sort((a, b) => a - b));

// How this is working questing is this?

// What javascript here doing is first javascript 3 and 52 a = 3 b = 52; And now if we 3 to 52 and we'll get number greater than 0 then javascript sort those numbers in order of b then a ---> like 52, 3 and if we got the output less than 0 then javascript sort the number in order of a, b ---> 3  52 and yes you're right this is the correct output :)

// A use case of sort method

// Imagine you have a ecommerce site and you want to sort products prices then how can you sort the prices of products with sort method example given below

// Example
const userCart = [
  { producdId: 1, producdPrice: 355 },
  { producdId: 2, producdPrice: 5355 },
  { producdId: 3, producdPrice: 34 },
  { producdId: 4, producdPrice: 3535 },
];

// Use this for low to high
userCart.sort((a, b) => a.producdPrice - b.producdPrice);

// console.log(userCart)

// ===================================

// Use this for high to low
userCart.sort((a, b) => b.producdPrice - a.producdPrice);

// console.log(userCart)

// ==============The End=================
 
PREVIOUS NEXT
Tagged: #sort #method
ADD COMMENT
Topic
Name
8+7 =