Capitalizing Each Word In A Sentence with JavaScript
Instructions
Write a function that accepts a string. The function should capitalize the first letter of each word in the string then return the capitalized string.
// Examples
capitalize('a short sentence') // 'A Short Sentence'
capitalize('not like...
delvoid.hashnode.dev2 min read