Advertisement: RazorSQL
Query, update, navigate, and manage all databases from one database
client with ease using RazorSQL, a database query tool, SQL Editor,
database navigator, and administraton tool.
Download a free trial today!
Advertisement: EditRocket
The text editor for programmers with coding tools and support for over 20 languages. Download a free trial today!
<html>
<head>
<script>
function SampleObject ()
{
this.name="SampleObject";
this.id="0";
this.age="";
this.date="";
}
</script>
</head>
<body>
<script>
var x = new SampleObject();
x.age="22";
x.date="01/01/2002";
for (val in x)
{
document.write( "name = " +val+ "<br>value = " +x[val]+ "<br>");
}
</script>
</body>
</script>
</html>