Skip to content

Instantly share code, notes, and snippets.

@prashanth-g
Created December 26, 2016 07:58
Show Gist options
  • Select an option

  • Save prashanth-g/bae92bdd80cd5521bdf56e9e5d368ad4 to your computer and use it in GitHub Desktop.

Select an option

Save prashanth-g/bae92bdd80cd5521bdf56e9e5d368ad4 to your computer and use it in GitHub Desktop.
function Stars(n) {
for(var i=1; i<=n;i++){
var s = "";
for(var j=0; j<n-i;j++) {
s += " ";
}
var st ="";
for(var k=0; k<2*i-1;k++) {
st +="*";
}
console.log(s+st);
}
}
@prashanth-g
Copy link
Author

prashanth-g commented Dec 26, 2016

Stars(5)

    *
   ***
  *****
 *******
*********

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment