我有以下代碼 -function x(a, b) { this.b = b || 'test'; this.c = false;}x.prototype.z = function() { if(this.c) { console.log('hello') }}let n = function(a, b, v, d) { x.call(this,a, b); this.a = a; this.v = v; this.d = d;}n.prototype = Object.create(x.prototype);let n1 = new n();為 n1 設(shè)置了哪三個屬性?--> 我發(fā)現(xiàn)只有 b、c 正在設(shè)置。但它要求 3 個選項C和在db
在下面的對象原型問題中遇到一些問題
慕田峪7331174
2022-12-22 15:17:00