programming-examples/js/Others/A function with only one statement.js
2019-11-15 12:59:38 +01:00

19 lines
280 B
JavaScript

<html>
<head>
<title>A Simple Page - Happy Codings :-) JavaScript Code Examples</title>
<script language="JavaScript">
function yourMessage()
{
alert("Your first function!");
}
</script>
</head>
<body>
<p>
Happy Codings :-) JavaScript Code Examples
<br>
</p>
</body>
</html>