**********
*********
********
*******
******
*****
****
***
**
*
_____________________________________________________________
錯了什麼?  nextRow:
for(var row=10;row>=1;row--){  
  document.writeln("</br>");
     
  for(var col=10;col>=1;col--)
  
 {
    
    if(row < col )
    continue nextRow;
       
   document.writeln("*");
   
  }
  }