我在下面尝试过。
它按预期运作。
String.constructor === Function; //true
String.prototype.constructor===String; //true
它没有按预期工作。
String.prototype === String; //false
我想知道★★。
什么是等效的String.prototype?
String.prototype === ★★; //true
其他问题
它是一个独特的对象 它是一个「String.prototype === String.prototype;」是
它的含义与以下相同?
String.prototype===String.prototype.constructor.prototype; //true
答案 0 :(得分:1)
每个函数(String
都是一个函数)都有自己的"唯一的" prototype
对象。所以没有等价物。