JS array sort
numArray.sort((a, b) => a - b); // For ascending sort
numArray.sort((a, b) => b - a); // For descending sort
JS array sort
numArray.sort((a, b) => a - b); // For ascending sort
numArray.sort((a, b) => b - a); // For descending sort
sort array java
Here’s the java program to sort an array using Arrays.sort() method.
import java.util.Arrays;
public class JavaArraySortMethod
{
public static void main(String[] args)
{
String[] strGiven = {"Great Barrier Reef", "Paris", "borabora", "Florence","tokyo", "Cusco"};
Arrays.sort(strGiven);
System.out.println("Output(case sensitive) : " + Arrays.toString(strGiven));
}
}
js sort asendenet
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){return a-b});
string sort javascript
var names = ["Peter", "Emma", "Jack", "Mia"];
var sorted = names.sort(); // ["Emma", "Jack", "Mia", "Peter"]
how to sort an array in javascript
you can sort array in different ways:
first....by using the sort method
ex: let arr = ["a", "d", "b", "c", "f"]
let res = arr.sort()
NOTE: this method is not ideal
second...... by using the sort function
ex: let arr = [1, 10, 11, 30, 100, 50, 45]
let res = arr.sort((a, b)=> a - b ).....this sorts in ascending order
let res = arr.sort((a, b)=> b - a ) ...this sorts in descending order
NOTE: we can also user different algorithms to sort an array. example: bubble sort,
quick sort, merge sort etc.
answer by EZIOGOR CLEVER
sorting in js
var arr = [23, 34343, 1, 5, 90, 9]
//using forEach
var sortedArr = [];
arr.forEach(x => {
if (sortedArr.length == 0)
sortedArr.push(x)
else {
if (sortedArr[0] > x) sortedArr.unshift(x)
else if (sortedArr[sortedArr.length - 1] < x) sortedArr.push(x)
else sortedArr.splice(sortedArr.filter(y => y < x).length, 0, x)
}
})
console.log(sortedArr);
// using sort method
console.log(arr.sort((a,b)=>{
return a-b;
}));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us