码迷,mamicode.com
首页 > 其他好文 > 详细

函数表达式和构造函数的区别

时间:2016-05-30 23:18:23      阅读:505      评论:0      收藏:0      [点我收藏+]

标签:

var a=function(config){
this.name=config;
this.out = function(){
alert(1)
}

}
a.name=‘hewenk‘;
a.prototype.inner=function(){
alert(1)
}
var n=new a(‘1234‘);
n.out();//1
n.inner();//1
console.log(n.name)//1234
console.log(a.name);//空 函数表达式的自定义属性实例无法继承

function b(config){
this.name=config;
this.out = function(){
alert(2)
}
}
b.prototype.inner=function(){
alert(2);
}
b.name = ‘1234‘;
var m=new b(‘123‘);
m.out();//2
m.inner();//2
console.log(m.name);//123 构造函数的自定义属性实例无法继承

两没有区别在使用的过程中,都不能继承自定义的属性

函数表达式和构造函数的区别

标签:

原文地址:http://www.cnblogs.com/-youth/p/5544141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!