I was trying to print the pyramid of stars, but was not able to add the new line.
var i;
for(i=10; i>=0; i= i-1){
var s;
for(s=0; s<i; s = s+1){
document.write("*");
}
//i want this to print a new line
/document.write(?);
}
Can anyone help me with this?