Question: Instructions: Add a method to the Person's prototype called getInitials that returns the first letter of their first and last name, both capitalized. Supplied Code:

Instructions: Add a method to the Person's prototype called "getInitials" that returns the first letter of their first and last name, both capitalized.

Supplied Code:

function Person(firstName, lastName) {

}

/* Do not modify code below this line */

const johnDoe = new Person('john', 'doe'); console.log(johnDoe.getInitials(), '<-- should be "JD"');

My code that is not being accepted as correct:

function Person(firstName,lastName) { this.firstName="john"; this.lastName="doe";

this.getInitials=function()

{

return this.firstName[0].toUpperCase()+this.lastName[0].toUpperCase();

} }

/* Do not modify code below this line */

const johnDoe = new Person('john', 'doe'); console.log(johnDoe.getInitials(), '<-- should be "JD"');

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!