请教一个js的面试题目

在中间的注释那里补充代码使这个代码输出最后的注释内容,谢谢大牛

var A = function() {

        this.name = 'apple';

    }

    A.prototype.getName = function() {

            return this.name;

        }

        // 补充代码


    var B = A.extend({

        initialize: function() {

            this.superclass.initialize.call(this);

            this.total = 3;

        },

        say: function() {

            return '我有' + this.total + '个' + this.getName()

        }

    });

    var b = new B();

    console.log(b.say()); //我有3个apple


慕姐8265434
浏览 446回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript