Valid CRT-600 Dumps shared by ExamDiscuss.com for Helping Passing CRT-600 Exam! ExamDiscuss.com now offer the newest CRT-600 exam dumps, the ExamDiscuss.com CRT-600 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CRT-600 dumps with Test Engine here:
Refer to the following code: class Vehicle{ constructor(plate){ this.plate = plate; } } class Truck extends Vehicle{ constructor(plate, weight){ //Missing code this.weight = weight; } displayWeight(){ console.log(`The truck ${this.plate} has a weight of ${this.weight}lb.`); } }let myTruck = new Truck('123Ab',5000); myTruck.displayWeight(); Which statement should be added to missing code for the code to display 'The truck 123AB has a weight of 5000lb.