-4
我在下面試過。什麼是等效的String.prototype?/String.prototype === String; // false
它按預期運行。
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
'String.prototype'是一個包含所有String方法的對象。目前還不清楚你真的在問什麼。 'typeof String.prototype ===「object」' – jfriend00
唯一能夠滿足你的身份測試的是'String.prototype === String.prototype',因爲它是一個獨特的對象。 – jfriend00