Skip to content

Instantly share code, notes, and snippets.

@hctilg
Created July 21, 2026 08:24
Show Gist options
  • Select an option

  • Save hctilg/bc0a0d0b81c325eb5b655f0b71c727dd to your computer and use it in GitHub Desktop.

Select an option

Save hctilg/bc0a0d0b81c325eb5b655f0b71c727dd to your computer and use it in GitHub Desktop.
tring.prototype.title = function() {
if (!this) return this;
return this
.split(" ")
.map(word => (word ? word[0].toUpperCase() + word.slice(1) : word))
.join(" ");
}
console.log("title".title();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment