js继承的原型链式
程序员文章站
2022-03-08 20:23:04
...
function parent(){
this.name="lily";
this.method=function(){
alert("ok");
}
};
function son(){
this.age=18;
};
son.prototype = new parent();
var new_son= new son();
console.log(new_son.name); //lily
</script>
上一篇: 记录代码运行时的一些errors
下一篇: 不重复数(一道编程题)