Can anyone fix this error!

Dec 25 2018 10:53 AM
Here is the code
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4. <meta charset="UTF-8">  
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">  
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">  
  7. <title>Calculator</title>  
  8. <script type="text/javascript">  
  9. var rows = prompt("Enter no. of rows");  
  10. var cols = prompt("Enter no. of cols");  
  11. if(rows==""||rows==null)  
  12. rows=10;  
  13. if(cols==""||cols==null)  
  14. cols=10;  
  15.   
  16. createTable(rows, cols);  
  17.   
  18. Function createTable(rows, cols)  
  19. {  
  20. var j=1;  
  21.   
  22. var output="<table border='1' width='500' cellspacing='0' cellpadding='5'>";  
  23. for(i=1;i<=rows;i++)  
  24. {  
  25. output=output+"<tr>";  
  26. while(j<=cols)  
  27. {  
  28. output=output+"<td>" +i*j+"</td>";  
  29. j=j+1;  
  30. }  
  31. output=output+"</tr>";  
  32. j=1;  
  33. }  
  34. output=output + "</table>";  
  35. document.write(output);  
  36. }  
  37. </script>  
  38. </head>  
  39. <body>  
  40. </body>  
  41. </html>  
Thanks in advance

Answers (2)