Heim >Backend-Entwicklung >PHP-Tutorial >JavaScript 中 function 和 Function 除了能省略一个括号之外,还有什么区别?

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

WBOY
WBOYOriginal
2016-06-06 20:12:23849Durchsuche

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

回复内容:

<code>问题已经解决了,但是楼下的回答很牛,但是是在评论里..希望对大家有帮助!</code>
<code>var foo02 = new function()  
 {  
     var temp = 100;  
     this.temp = 200;  
     return temp + this.temp;  
 } </code>
<code>var foo3 = new Function('var temp = 100; this.temp = 200; return temp + this.temp;');  </code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn