Skip to content

Latest commit

 

History

History
 
 

capitalizesentence

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Capitalize sentence

Instructions

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

challenge | solution

Examples

capitalizeSentence("flower") // Flower

capitalizeSentence("this is a house") // This Is A House