Нужно что бы эта функция
function Car(brand, model, age ) {
this.brand = brand,
this.model = model,
this.age = age,
this.num = 777,
this.prms = 'num777',
this.params = function() {
console.log(this)
}
}
const num = {num: 888}
const audi = new Car( 'audi', 'a8', 2020)
вернула this и баендом заменить значение this.num = 777,