| |
Source Code
<!-- Writing on screen -->
writeln will add a space also
at the end of each words.
<html>
<head>
<title>Write</title>
</head>
<body>
<script language="Javascript">
<!-- HIDE FROM OTHER BROWSERS
document.writeln("One,");
document.writeln("Two,");
document.write("Three,");
document.write("Four,");
//STOP HIDING-->
</script>
</body>
</html> |
|