0
What will be possible error in following code
<html> <head> <title>multiplication table</title> </head> <body> <h1>multiplication table</h1> <script language="javascript"> var i,n; n=prompt("enter a number","10"); for(i=0;i<=10;i++) { document.write(i+"*"n+"="(n*i)+); } </script> </body> </html>
2 Respuestas
0
document.write(i+"*"n+"="(n+*i)+);
Again have syntax error
0
Got my problem solved...
Thanks respected sir Dr. Doggo and respected ace for ur guidance...