JS Factory Create Object method

Source: Internet
Author: User

<! DOCTYPE html>
<meta charset= "UTF-8" >
<title></title>
<body>
Create a Person object in a factory way
Create an object in Createperson
Then set the appropriate properties and methods for this object
This object is then returned

<script>
function Createdog (name,age,color) {
var o =new Object ();
O.name = name;
O.age = age;
O.color = color;
O.say = function () {
Alert (THIS.name + "," + this.age);
Alert ("You call" + name + "Age" +age + "body color for" +color);
}
return o;
}
var dog_one=createdog ("Rhubarb", "20", "yellow");
Dog_one.say ();
var dog_one=createdog ("Great White", "20", "White");
Dog_one.say ();
var dog_one=createdog ("Big Black", "20", "Black");
Dog_one.say ();
</script>
</body>

JS Factory Create Object method

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.