You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Others/A function with only one st...

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>