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

new操作符做了什么?

时间:2019-08-28 01:24:06      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:this   prototype   UNC   做了   ons   div   font   nbsp   操作   

function Test(){
this.name = ‘lishishi‘
}
var obj = new Test()
 
 
var obj = {
name:‘lishishi‘
}
function Test(param){
console.log(this);
console.log(param)
}
obj.__proto__ = Test.prototype
Test.call(obj,123)
 
 

new操作符做了什么?

标签:this   prototype   UNC   做了   ons   div   font   nbsp   操作   

原文地址:https://www.cnblogs.com/MDGE/p/11421445.html

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