Wed Mar 23, 2011 7:44 pm
Wed Mar 23, 2011 9:14 pm
<html>
<body>
<script>
document.write(' hello');
</script>
</body>
</html>
<html>
<body>
<script>
var sum=0;
var x=5;
var y=3;
sum=x+y;
document.write(sum);
</script>
</body>
</html>
<html>
<body>
<script>
var description="x+y= ";
var sum=0;
var x=5;
var y=3;
sum=x+y;
document.write(description+sum);
</script>
</body>
</html>
Wed Mar 23, 2011 9:36 pm
Wed Mar 23, 2011 9:40 pm
<html>
<body>
<script>
var sum=10;
for(var i=0;i<sum;i++){
document.write('Iteration number '+i+'<br/>');
}
</script>
</body>
</html>
Wed Mar 23, 2011 9:45 pm
msi_333 wrote:loop ?
like this
- Code:
<html>
<body>
<script>
var sum=10;
for(var i=0;i<sum;i++){
document.write('Iteration number '+i+'<br/>');
}
</script>
</body>
</html>
Wed Mar 23, 2011 9:52 pm
Wed Mar 23, 2011 9:53 pm
yes and no but thanks anyway bro.msi_333 wrote:@themadruski
you quote my reply ! is your problem solved ?
Wed Mar 23, 2011 9:59 pm
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.