Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Salesforce JS-Dev-101 Exam - Topic 6 Question 4 Discussion

A class was written to represent items for purchase in an online store, and a second class representing items that are on sale at a discounted price. The constructor sets the name to the first value passed in. There is a new requirement for a developer to implement a description method that will return a brief description for Item and SaleItem.01 let regItem = new Item('Scarf', 55);02 let saleItem = new SaleItem('Shirt', 80, .1);03 Item.prototype.description = function() { return 'This is a ' + this.name; }04 console.log(regItem.description());05 console.log(saleItem.description());0607 SaleItem.prototype.description = function() { return 'This is a discounted ' + this.name; }What is the output when executing the code above?
B) This is a Scarf This is a Shirt This is a Scarf This is a discounted Shirt
A) This is a Scarf Uncaught TypeError: saleItem.description is not a function This is a Scarf This is a discounted Shirt
C) This is a Scarf This is a Shirt This is a discounted Scarf This is a discounted Shirt
D) This is a Scarf Uncaught TypeError: saleItem.description is not a function This is a Shirt This is a discounted Shirt

Salesforce JS-Dev-101 Exam - Topic 6 Question 4 Discussion

Actual exam question for Salesforce's JS-Dev-101 exam
Question #: 4
Topic #: 6
[All JS-Dev-101 Questions]

A class was written to represent items for purchase in an online store, and a second class representing items that are on sale at a discounted price. The constructor sets the name to the first value passed in. There is a new requirement for a developer to implement a description method that will return a brief description for Item and SaleItem.

01 let regItem = new Item('Scarf', 55);

02 let saleItem = new SaleItem('Shirt', 80, .1);

03 Item.prototype.description = function() { return 'This is a ' + this.name; }

04 console.log(regItem.description());

05 console.log(saleItem.description());

06

07 SaleItem.prototype.description = function() { return 'This is a discounted ' + this.name; }

What is the output when executing the code above?

Show Suggested Answer Hide Answer
Suggested Answer: B

Comprehensive and Detailed

Assuming SaleItem inherits from Item via prototype (e.g. SaleItem.prototype = Object.create(Item.prototype)):

Lines 01--02: create regItem and saleItem.

Line 03: define Item.prototype.description.

Now both regItem and saleItem (via inheritance) have a description method from Item.prototype.

Line 04: regItem.description() 'This is a Scarf'.

Line 05: saleItem.description() 'This is a Shirt' (same method, but this.name is 'Shirt').

Line 07: SaleItem.prototype.description = ... overrides description only for SaleItem instances going forward.

If we imagine calling regItem.description() and saleItem.description() again after line 07:

regItem.description() still uses Item.prototype.description 'This is a Scarf'.

saleItem.description() now uses SaleItem.prototype.description 'This is a discounted Shirt'.

Those four lines correspond to option B.

________________________________________


Contribute your Thoughts:

0/2000 characters
Dick
24 days ago
Wait, why would there be a TypeError? That seems odd.
upvoted 0 times
...
Bulah
29 days ago
I think the output will be option A.
upvoted 0 times
...
Tomoko
1 month ago
The SaleItem class needs to inherit from Item for the method to work.
upvoted 0 times
...
Joesph
1 month ago
I thought both descriptions would work fine!
upvoted 0 times
...
Selma
1 month ago
Wait, why would there be a TypeError?
upvoted 0 times
...
Melita
2 months ago
Definitely going with option A!
upvoted 0 times
...
Sabine
2 months ago
I think the output will have an error for saleItem.
upvoted 0 times
...
Keneth
2 months ago
The SaleItem class needs to inherit from Item.
upvoted 0 times
...
Johana
2 months ago
I recall that if the SaleItem doesn't have its own description method defined properly, it might throw an error. That makes me lean towards option A.
upvoted 0 times
...
Venita
2 months ago
I think the first part of the output will definitely be "This is a Scarf," but I'm confused about what happens with the SaleItem.
upvoted 0 times
...
Kerry
3 months ago
I'm not entirely sure, but I feel like the SaleItem might not inherit the description method correctly. That could lead to an error.
upvoted 0 times
...
Rickie
3 months ago
I remember we practiced something similar where we had to define methods for different classes. I think the output should include both descriptions.
upvoted 0 times
...

Save Cancel