Hello! Need assessment for Strings tasks.
Codepen:
In task 3 i left a quote about green eggs and ham in fixedQuote to see both quotes on the page.
And in task 4 i wrote a*a and b*b because that is a little bit shorter than a**2 and b**2
.
Hello! Need assessment for Strings tasks.
Codepen:
In task 3 i left a quote about green eggs and ham in fixedQuote to see both quotes on the page.
And in task 4 i wrote a*a and b*b because that is a little bit shorter than a**2 and b**2
.
Hello @VladimirK
Great work on this tasks. Everything works as intended. 
Have a nice day,
Michael
Thank you @mikoMK!
Task 2 : edited.
Task 3: something like this:
const quote = ‘i dO nOT lIke gREen eGgS anD HAM’;
const fixedQuote = quote.slice(0,1).toUpperCase() + quote.slice(1).toLowerCase();
You’re welcome!
Yes, that was exactly what I was looking for. Good job!