Note that alphabet[4].charCodeAt()
gives the ascii value of the 5th element of the string called alphabet
Note that String.fromCharCode(65)
gives the letter "A"
countASCIIOver100()
to count how many characters' ascii values are above 100.The number of a characters with ASCII over 100 is: 19
countWords()
to return the total number of words in the string The number of a words are: 6
Provide evidence of your code running Exercise 1 here:
Provide evidence of your code running Exercise 2 here:
Provide evidence of your code running Exercise 3 here: