Hello.
Have some problems here. Having just made this in java. The numbers range from 1- 10.
But then I'll have those from 10-1. Someone who can explain to me how I do it?
<html>
<body>
<script type="text/javascript">
var i=0
for (i=1;i<=10;i++)
{
if (i==3){continue}
document.write( + i)
document.write("<br />")
}
</script>
</body>
</html