darksh3ll
11/4/2018 - 11:25 AM

Capitalize premier mot

function capitalize (str) {
   return str[0].toUpperCase()+str.slice(1);
}