Skip to content

Instantly share code, notes, and snippets.

@masterk63
Created July 22, 2017 16:00
Show Gist options
  • Save masterk63/9df48606c1d48c0a4a21b2e7f697412b to your computer and use it in GitHub Desktop.
Save masterk63/9df48606c1d48c0a4a21b2e7f697412b to your computer and use it in GitHub Desktop.
primer letra mayuscula Capital Letter
primeraLetraMayuscula( str )
{
let pieces = str.split(" ");
for ( let i = 0; i < pieces.length; i++ )
{
let j = pieces[i].charAt(0).toUpperCase();
pieces[i] = j + pieces[i].substr(1).toLowerCase();
}
return pieces.join(" ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment