Skip to content

Instantly share code, notes, and snippets.

View samuelsp's full-sized avatar
🏠
Working from home

Samuel Pereira samuelsp

🏠
Working from home
View GitHub Profile
//exercicio01
var escudo = function(qtd)
{
var degrauEscudo = '';
if(typeof(qtd) == 'number' && qtd >= 1)
{
for(var i = 0; i < qtd; i++)
{
degrauEscudo += '#'