Assessment wanted for strings 3 skill test*

All feedback appreciated.
code:

Hi @Radderrad and welcome to the community :wave:

Sorry for the long delay.

Congratulations! Well done. :tada:

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