JavaScript——编写一个b继承a的方法

    function a() {
     
        this.run = function() {
     
            console.log("我是run方法");
        }
    }

    function b() {
     

    }
    b.prototype = new a();
    var nb = new b();

    nb.run();

你可能感兴趣的:(慢慢找工作,javascript)