New Year Sale 2026! 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

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

Currently there are no comments in this discussion, be the first to comment!


Save Cancel