for (var i = 7; i >= 1; i--) {_x000D_
var str = "";_x000D_
for (var j = i; j <= 7; j++) {_x000D_
str += "*";_x000D_
}_x000D_
console.log(str);_x000D_
}_x000D_
// This is example_x000D_
_x000D_
// You can do this with any string and without using the function.
_x000D_