Skip to content

Instantly share code, notes, and snippets.

@gulshanzealous
Created October 6, 2017 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gulshanzealous/fef9ae5a8951d34e7d591a4302d2a8b4 to your computer and use it in GitHub Desktop.
Save gulshanzealous/fef9ae5a8951d34e7d591a4302d2a8b4 to your computer and use it in GitHub Desktop.
capitalize(str=''){
return str.trim().split('')
.map((char,i) => i === 0 ? char.toUpperCase() : char )
.reduce((final,char)=> final += char, '' )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment