x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>Object Attributes for Looping</h1>
6
<script>
7
    var employee = {
8
        name: "Harry",
9
        age: 26,
10
        gender: "Male",
11
    };
12
13
    for(var i in employee)  {
14
        document.write(employee[i] + "<br>");
15
    }
16
</script>
17
18
</body>
19
</html>