How could this code be re-written where the loop does not continuously run after another letter in the alphabet? – Javascript
I need to create a function, lettersAfter(), that accepts three arguments: haystack: The string to be searched needle: A character to search for. limit: The number of letters after the character to return lettersAfter() should return the letters following the…