OK, seriously...what am I missing here?
Not sure if you can enlarge that image (I don't seem to be able to my end), so here's my solution:
export const capitalizeFirstWord = (s) => {
return s.replace("london", "London");
};
My console output is as follows: London is the capital of Great Britain.
...and yet, when I submit, apparently I fail the following test:
2. The first letter of the first word should be turned to uppercase.
I did not change the solution.js file, only the function.js file.