All feedback appreciated.
code:
Hi @Radderrad and welcome to the community
Sorry for the long delay.
Congratulations! Well done.
Since the capitalization of the first letter only works if it’s an “i” you could make the code more general by using something like this:
const firstLetter = fixedQuote.slice(0,1);
fixedQuote = fixedQuote.replace(firstLetter, firstLetter.toUpperCase());
This would capitalize the first letter no matter which character it is.
I hope that helps,
Michael