logo

Crowdly

Browser

Add to Chrome

Що виведе цей код? class Engine { start() { return 'Engine started'; } }...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Що виведе цей код?
 class Engine {

start() { return 'Engine started'; }

}

class Car {

constructor() {

this.engine = new Engine();

}

drive() {

return this.engine.start() + ' - driving';

}

}

const car = new Car();

console.log(car.drive());

100%
0%
0%
0%
More questions like this

Want instant access to all verified answers on elr.tnpu.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome