Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 321 Bytes

File metadata and controls

15 lines (9 loc) · 321 Bytes

Capitalize sentence

Instructions

Given a string implement a function which capitalizes first letter of every word in that string.

Challenge | Solution

Examples

capitalize_sentence('flower') // Flower

capitalize_sentence('this is a house') // This Is A House