# May 12 Codewars

I actually worked on codewars today. I did do three but I chose the easiest for me. I just needed a win and seeing that 'passed all tests' boosted my confidence. Although on one of the kata I solved, I forgot to submit it before clicking on the solutions so I forfeited the points. HAHAHAHAHAHAHA of course! 

But it's ok I think my code looked real cute. 
```
function capitalizeWord(word) {
  return word[0].toUpperCase() + word.slice(1);  
}
``` 
Pushing my work to GitHub and adding another little green square (even though they haunt my dreams). 


