0 / 60 seg.

What is the result of the following code?

class Car {
  constructor(brand) {
    this.brand = brand;
  }
}
const myCar = new Car('Ford');
console.log(myCar.brand);