Skip to content

Instantly share code, notes, and snippets.

@dimasandhk
Created June 22, 2021 02:52
Show Gist options
  • Save dimasandhk/0def8f14e5713a13c6d734ae0ab6c5f6 to your computer and use it in GitHub Desktop.
Save dimasandhk/0def8f14e5713a13c6d734ae0ab6c5f6 to your computer and use it in GitHub Desktop.
String.prototype.capitalize = function() {
return `${this[0].toUpperCase()}${this.slice(1)}`
}
console.log('ini teks'.capitalize()) // => 'Ini teks'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment