js code stars code example
Example: js code stars
for (var index = 0; index <= 10; index++){
for(stars = 0; stars < index; stars++){
document.write("*");
};
document.write("<br>");
};
for (var index = 0; index <= 10; index++){
for(stars = 0; stars < index; stars++){
document.write("*");
};
document.write("<br>");
};