Create a function that takes a string and returns true or false, depending on whether the characters are in order or not.
isInOrder("abc") ➞ true
isInOrder("edabit") ➞ false
isInOrder("123") ➞ true
isInOrder("xyzz") ➞ trueYou don't have to handle empty strings.