I have a problem with my exercise. I have to draw something like this: https://screenshots.firefox.com/3qaHB7dcr3n610hi/jsbin.com
And this is my code
var empty = "";
for(var i=0; i < 5; i++) {
empty += "*";
console.log(empty)
}
but with this code I can only make this:
*
**
***
****
*****
I have no idea how to reverse this loop to start it from top from 5 stars, i tried something like this:
var empty = "";
for (i = 5; i <= 0;i--) {
empty+="*";
console.log(empty);
}
But doesn't work. Anybody know how to do this? I will be grateful :)