Skip to content

Instantly share code, notes, and snippets.

@ra-kesh
Created November 29, 2020 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ra-kesh/7cd12fb32f0d2c2eaa7e7043ebd1f0d0 to your computer and use it in GitHub Desktop.
Save ra-kesh/7cd12fb32f0d2c2eaa7e7043ebd1f0d0 to your computer and use it in GitHub Desktop.
star pattern
for (i=0; i<6; i++){
    var str="";
    for (j=0; j<i ; j++){
       str = str + "*";
    }
    console.log(str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment