IntermediateJavaScript

Capitalize the first letter of each word

Write a function that capitalizes the first letter of each word in a string.

Examples

Input: "hello world"

Output: "Hello World"

Your Solution

Output

Click 'Run Code' to see the output