Answers for "steps to sort an array of string"

2

sort a string array java

String[] myArray = {"JavaFX", "HBase", "OpenCV", "Java", "Hadoop","Neo4j"};
Arrays.sort(myArray);
System.out.println(Arrays.toString(myArray));
Posted by: Guest on September-29-2020
0

sort array of strings

/* names of illnesses are written in order of 
how patients have arrived. Let's sort them in alphabetical order. */


const diseases = [
    "Mysophobia",
    "Fear of missing out",
    "Erythrophobia"
];

diseases.sort(function(a, b) {
  /* let's convert the strings to lowercase
  to ensure the comparison works */ 
  a = a.toLowerCase();
  b = b.toLowerCase();

    if (a < b) return -1; // a will come before b
    if (b < a) return 1; // b will come before a

  return 0;
});

console.log(diseases);

/* ["Erythrophobia","Fear of missing out", "Mysophobia"] */
Posted by: Guest on December-28-2021

Code answers related to "steps to sort an array of string"

Browse Popular Code Answers by Language