Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

15 lines
383 B
HTML

<script>
function User(forename, username, password)
{
this.forename = forename
this.username = username
this.password = password
this.showUser = function()
{
document.write("Forename: " + this.forename + "<br>")
document.write("Username: " + this.username + "<br>")
document.write("Password: " + this.password + "<br>")
}
}
</script>