Thanks!
Off topic, I need help with something... I wrote this code, but something is wrong. (Javascript)
Code:
<script type="text/javascript">
var d= new Date();
document.write("Welcome to 8! Todays date is: November the " + mytime() + ".")
function mytime()
{
document.write(d.getDate())
}
</script>
The result is this:
19Welcome to 8! Todays date is: November the undefined.
The result I needed was this:
Welcome to 8! Todays date is: November the 19.