Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Created August 19, 2014 17:50
Show Gist options
  • Save tadeubdev/57ba0b9cab817afef487 to your computer and use it in GitHub Desktop.
Save tadeubdev/57ba0b9cab817afef487 to your computer and use it in GitHub Desktop.
Esta função repete uma string a quantidade de vezes requisitada e a retorna
// Repete uma `string` a quantidade de vezes requisitada.
String.prototype.repeat = function( num )
{
return new Array( num + 1 ).join( this );
}
// Ex.:
var nome = prompt( 'Qual o seu nome ?' );
var cod = nome[0].repeat(3) + nome[2].repeat(3) + nome[ nome.length - 1 ].repeat(3);
alert( 'Seu código é : ' + cod );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment