JavaScript function () {},new function (), new function (), function simple Introduction

Source: Internet
Author: User
Tags variable scope



A function is a very important language element in JavaScript, and provides a function keyword and built-in object function, following its possible usage and relationships between them.


function how to use
 
 var foo01 = function() //或 function foo01()
 { var temp = 100; this.temp = 200; return temp + this.temp;  
 }  
 alert(typeof(foo01)); // function  alert(foo01()); // 300 


The most common way to use function is to set a JavaScript function. The two kinds of writing show that the effect is exactly the same, but the only one is that the latter is a higher initialization priority. In a variable scope within a large expansion number, this refers to the owner of the Foo01, the Window object.


How to use the new function ()
 
var foo02 = new function()  
 { var temp = 100; this.temp = 200; return temp + this.temp;  
 }  

 alert(typeof(foo02)); //object  alert(foo02.constructor()); //300 


This is a comparison of the use of puzzle functions, as if a function is set. But this is actually a user-defined object in JavaScript, but this is an anonymous class. This usage is basically not related to the use of the function itself, and a variable scope is constructed in the large expansion number, which refers to the scope itself. (understood to instantiate anonymous classes)


How to use the new Function ()
 
var foo3 = new Function(‘var temp = 100; this.temp = 200; return temp + this.temp;‘);  

 alert(typeof(foo3)); //object alert(foo3()); //300


Use the system built-in function object to build a function, and the first way in method one is exactly the same on both the effect and the initialization priority, that is, the function body is given as a string.


Function () How to use
 
var foo4 = Function(‘var temp = 100; this.temp = 200; return temp + this.temp;‘);  

 alert(typeof(foo4)); //function alert(foo4()); //300


This method is not used frequently, the effect and method are the same, but it is unclear whether new to generate any side effects, this also embodies the JavaScript one of the biggest features: Flexible! Can save on the province. (Not recommended)



JavaScript function () {},new function (), new function (), function simple Introduction


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.