Javascript DOM HTML Document write() Method compare with writeln()

Introduction

Difference between write() and writeln():

View in separate window

<!DOCTYPE html>
<html>
<body>

<p>Note that write() does NOT add a new line after each statement:</p>

<pre>
<script>
document.write("Hello World!");
document.write("Have a nice day!");
</script>//from   w  w w  .j a va2 s. c o m
</pre>

<p>Note that writeln() add a new line after each statement:</p>

<pre>
<script>
document.writeln("Hello World!");
document.writeln("Have a nice day!");
</script>
</pre>

</body>
</html>



PreviousNext

Related