Using Statements
Each statement represents a single command, and statements are usually terminated by a semicolon (;).
<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
</head>
<body>
<script type="text/javascript">
document.writeln("This is a statement");
document.writeln("This is also a statement");
</script>
</body>
</html>