Determines if the String's a, b, c are sorted in alphabetical order. code example
Example: string and charater alphabet order
str = "jerryparker";
function reve(){
return str.split('').sort().join("");
}
console.log(reve(str.length));