Avoiding out.println()
We can use an expression to replace the first scriplet in this lecture, viz:
<html><head></head><body>
<% out.println(“Now is” + new java.util.Date()) ; %>
</body></html>
with:
<html><head></head><body>
Now is <%= new java.util.Date() %>
</body></html>
In general, expression elements save us writing many scriplets that just include calls to out.println().