Skip to content

Instantly share code, notes, and snippets.

@ronjunevaldoz
Created July 20, 2017 06:13
Show Gist options
  • Save ronjunevaldoz/e3366185fd3a1633abbd486fd428ce77 to your computer and use it in GitHub Desktop.
Save ronjunevaldoz/e3366185fd3a1633abbd486fd428ce77 to your computer and use it in GitHub Desktop.
Javascript Rectangle Asterisk
var height = 5;
var width = 20;
for(var h = 0; h< height; h++) {
for(var w = 0; w< width; w++) {
if(w> 0 && w < width - 1) {
if(h> 0 && h < height - 1) {
$('#test').append('_');
} else {
$('#test').append('*');
}
} else {
$('#test').append('*');
}
}
$('#test').append('<br>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment