Enumerate functions of JavaScript objects

Source: Internet
Author: User

From: JavaEye.com

Functions that enumerate JavaScript objects:
Function iterator (obj ){
For (var property in obj ){
Document. writeln ("<p>" + property + ":" + obj [property] + "</p> ");
}
}

A simple example (test. js ):
Function Employee (){
This. name = "";
This. dept = "general ";
}

Function Manager (){
This. reports = [];
}
Manager. prototype = new Employee ();

Function WorkerBee (){
This. projects = [];
}
WorkerBee. prototype = new Employee ();

Function SalesPerson (){
This. dept = "sales ";
This. quota = 100;
}
SalesPerson. prototype = new WorkerBee ();

Function Engineer (){
This. dept = "engineering ";
This. machine = "";
}
Engineer. prototype = new WorkerBee ();
Engineer. prototype. specialty = "code ";

Function iterator (obj ){
For (var property in obj ){
Document. writeln ("<p>" + property + ":" + obj [property] + "</p> ");
}
}

The HTML page is:
<Html>
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8"/>
<Title> JavaScript </title>
<Style type = "text/css">
P {
Font-size: 12px;
Font-family: Verdana;
Line-height: 0.5em;
}
</Style>
<Script language = "javascript" type = "text/javascript" src = "test. js"> </script>
</Head>
<Body>
<Script type = "text/javascript">
Engineer = new Engineer ();
Iterator (engineer );

</Script>
</Body>
</Html>

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.