export default function capitalizeWords(sentence) {
// TODO: Capitalize first letter of each word
throw new Error('Not implemented');
}
Run tests to see results.
export default function capitalizeWords(sentence) {
// TODO: Capitalize first letter of each word
throw new Error('Not implemented');
}