欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

JavaScript 中 function 和 Function 除了能省略一个括号之外,还有什么区别?

程序员文章站 2022-05-04 14:36:05
...
问题已经解决了,但是楼下的回答很牛,但是是在评论里..希望对大家有帮助!
var foo02 = new function()  
 {  
     var temp = 100;  
     this.temp = 200;  
     return temp + this.temp;  
 } 
var foo3 = new Function('var temp = 100; this.temp = 200; return temp + this.temp;');  

回复内容:

问题已经解决了,但是楼下的回答很牛,但是是在评论里..希望对大家有帮助!
var foo02 = new function()  
 {  
     var temp = 100;  
     this.temp = 200;  
     return temp + this.temp;  
 } 
var foo3 = new Function('var temp = 100; this.temp = 200; return temp + this.temp;');