Question: Create an HTML file named challengeme.html . Using a constructor, implement a Person object with the following properties and methods: fname lname age introduceSelf() ->
Create an HTML file named challengeme.html.
Using a constructor, implement a Person object with the following properties and methods:
fname
lname
age
introduceSelf() -> displays: Hi my name is . Nice to meet you!
getAge() -> displays: I am years old.
talk(sentence) -> Displays: the content of sentence
Create 3 new instances using your object Person. Kid1, kid2 and teen1. Define their first names, last names, ages and call the methods when applicable, see output below:

Hi! My name is Will Smith. Nice to meet you! I am 10 years old. Hi! My name is Michelle Jones. Nice to meet you! I am 12 years old. Hi! My name is Peter Parker. Nice to meet you! My favorite quote is: "With great power comes great responsibility
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
