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

16 lines
393 B
HTML

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