extends关键字在这个上下文中是什么意思?

What does the extends keyword mean in this context?

本文关键字:是什么 意思 上下文 关键字 extends      更新时间:2023-09-26

我正在遵循一个教程,它说myObject扩展toString对象。

var myObject  = {};
console.log(myObject.toString());

不知道你是什么意思,因为没有链接/引用到你提到的教程,但根据我的理解,你可以扩展/覆盖Object.prototype.toString方法,以便以你希望的格式打印。如果没有,它将使用默认方法,该方法将打印"[object type]"

var myObject = {};
myObject.toString = function(){ return "I'm my Object";}
console.log(myObject.toString()); //it will print "I'm my Object"
Ref: toString() API