Understanding the concept _javascript techniques in JavaScript without function overloading through an instance

Source: Internet
Author: User

Imagining the function name as a pointer also helps to understand why there is no concept of a function overload in ECMAScript. The following example:

Copy Code code as follows:

function Addsomenum (num)
{
return num+100;
}
function Addsomenum (num)
{
return num+200;
}
var result=addsomenum (100);//300

Obviously, this example declares two functions with the same name, and the result is that the following function overrides the previous function. The above code is actually consistent with the following code.

Copy Code code as follows:

var addsomenum=function (num)
{
return num+100;
};
var addsomenum=function (num)
{
return num+200;
};
var result=addsomenum (100);//300

By looking at the rewrite code, it's easy to see what's going on. When you create a second function, you actually overwrite the variable addsomenum that references the first function.

The above mentioned is the entire content of this article, I hope you can enjoy.

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.