我正在阅读有关 Javascript 中的 Promises 的教程。我在很多地方都看到了 then() 方法的用法。
当我编写下面的代码时,我__proto__
在控制台的部分下看到了“then()”函数。
const myPromise = new Promise(function(resolve, reject) {});
console.log(myPromise);
但是当我编写以下代码时,我无法观察到相同的“then()”函数,
class Car {
constructor(color, type, doors) {
this.color = color;
this.type = type;
this.doors = doors
}
}
const myCar = new Car('blue', 'sedan', '4');
console.log(myCar);
then()
所以,我在想,我们可以在 Javascript 中创建自己的函数并执行它吗?