The Apply, call method, and length property instances of JavaScript functions

Source: Internet
Author: User

<script language= "javascript" type= "Text/javascript" >
<!--
Defines a function func1, with attribute p and method a
function Func1 () {
this.p= "func1-";
This.a=function (ARG) {
alert (THIS.P+ARG);
}
}
Defines a function func2, with attribute p and method b
function Func2 () {
this.p= "func2-";
This.b=function (ARG) {
alert (THIS.P+ARG);
}
}
var obj1=new func1 ();
var obj2=new func2 ();
obj1.a ("Bya"); Show Func1-bya
obj2.b ("Byb"); Show Func2-byb
Obj1.a.apply (obj2,["bya"]); Displays Func2-bya, where ["Bya"] is an array of only one element, the same as
Obj2.b.apply (obj1,["BYB"]); Show Func1-byb
Obj1.a.call (Obj2, "bya"); Show Func2-bya
Obj2.b.call (obj1, "byb"); Show Func1-byb

-->
</script>

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.