<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Simple Function</title>
</head>
<body>
<pre> <!-- Use pre element for work document.writeln() method -->
<script type="text/javascript">
function msgfun(){
document.writeln("hello world!");
}
msgfun();
</script>
</pre>
</body>
</html>