javascript sort alphabetically array code example

Example 1: js order alphabetically

// Alphabetically
const ascending = data.sort((a, b) => a[field].localeCompare(b[field]))
// Descending
const descending = ascending.reverse()

Example 2: javascript return string in alphabetical order

function alphabet_Soup(str) { 

    return str.split("").sort().join("");
         
}

console.log(alphabet_Soup("Python"));

console.log(alphabet_Soup("Exercises"));


//My Solution 

function alphaOrder(str) {
    return str.split("").sort().join("");
}

console.log(alphaOrder("webdev"))