This text is plain.
| <SCRIPT LANGUAGE="JavaScript">
document.write(navigator.appName
+ "<BR>"); var example = "An Example"; document.write("<BR>"
+ example + " of how to use concatenation <BR>"); // -- OR -- // document.write('<BR>', example, ' of another way to use "concatenation"', '<BR>'); </SCRIPT> <BODY> This text is plain.<BR> <SCRIPT> document.write("This text is bold.</B>"); </SCRIPT> |