Friday, 13 November 2015

How to make a variable in java

<html>
<body>
<script tyoe="text/javascript">
var firstname;
firstname="Edmund";
document.write(firstname);
document.write("<br/>");
firstname="Tom";
document.write("<br/>");
document.write(firstname);

</script>
















When you put it in, should look like this

No comments:

Post a Comment