首頁 >後端開發 >php教程 >JavaScript 中 function 和 Function 除了能省略一个括号之外,还有什么区别?

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

WBOY
WBOY原創
2016-06-06 20:12:23848瀏覽

<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>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn