Skip to content

Instantly share code, notes, and snippets.

@theDreamer911
Created January 24, 2021 08:51
Show Gist options
  • Save theDreamer911/11d527ad72e967dc54cdaefe36695bdf to your computer and use it in GitHub Desktop.
Save theDreamer911/11d527ad72e967dc54cdaefe36695bdf to your computer and use it in GitHub Desktop.
word = "hello world what is up?";
function capitalize(words) {
let word = words.split(" ");
let capital = [];
for (i = 0; i < word.length; i++) {
capital.push(word[i].charAt(0).toUpperCase() + word[i].slice(1));
}
return capital.join(" ");
}
console.log(capitalize(word));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment