Given a string, convert the first character of each word to uppercase.
// input: const s = 'hello world' // output: 'Hello World'
/* output */