how to check which string is in the first alphabetical order in c code example
Example: string and charater alphabet order
str = "jerryparker";
function reve(){
return str.split('').sort().join("");
}
console.log(reve(str.length));