53063593e3
Final
15 lines
393 B
HTML
15 lines
393 B
HTML
<script>
|
|
function User(forename, username, password)
|
|
{
|
|
this.forename = forename
|
|
this.username = username
|
|
this.password = password
|
|
|
|
User.prototype.showUser = function()
|
|
{
|
|
document.write("Forename: " + this.forename + "<br>")
|
|
document.write("Username: " + this.username + "<br>")
|
|
document.write("Password: " + this.password + "<br>")
|
|
}
|
|
}
|
|
</script> |