Wednesday, September 25, 2024
Google search engine
HomeLanguagesJavascriptJavaScript | Object Properties

JavaScript | Object Properties

Object properties are defined as a simple association between name and value. All properties have a name and value is one of the attributes linked with the property, which defines the access granted to the property. Properties refer to the collection of values which are associated with the JavaScript object. This collection may not follow any particular order. JavaScript provides the feature to add, delete and modify the properties. Properties are denoted by name:values pairs.

Syntax:

  • objectName.property 
  • objectName["property"]
  • objectName[expression]

Properties:

  • addition: It can add new objects by simply giving values to those new objects.
  • deletion: It uses delete keyword, to delete a property from an object.

Example 1: Shows adding a new property to the existing object.




<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript Object Properties
    </title>
</head>
  
<body>
    <h1>Geeks</h1>
      
    <h3>JavaScript Object Properties</h3>
      
    <p id="gfg"></p>
      
    <!-- Script to add object property -->
    <script>
        var employee = {
            name:"Steve",
            id:"123"
        };
      
        employee.age="25";
          
        document.getElementById("gfg").innerHTML = employee.name
            + " age " + employee.age + " years, and has unique id "
            + employee.id +".";
    </script>
</body>
  
</html>                                


Output:

Example 2: Shows deleting a property from the existing object.




<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript Object Properties
    </title>
</head>
  
<body>
    <h1>Geeks</h1>
      
    <h3>JavaScript Object Properties</h3>
  
    <p id="gfg"></p>
      
    <!-- Script to delete object content -->
    <script>
        var employee = {
            name:"Steve",
            id:"123"
        };
          
        /* Delete employee id */
        delete employee.id;
        document.getElementById("gfg").innerHTML = employee.name
                + " has unique id " + employee.id +"." ;
    </script>
</body>
  
</html>                    


Output:

There are different ways to accessing the object properties. Following examples demonstrate the different accessing techniques:

  • Example: This example uses .property to access object element.




    <!DOCTYPE html>
    <html>
      
    <head>
        <title>
            JavaScript Object Properties
        </title>
    </head>
      
    <body>
        <h1>Geeks</h1>
          
        <h3>JavaScript Object Properties</h3>
      
        <p>Using .property to access an object</p>
      
        <p id="gfg"></p>
          
        <script>
            var employee = {
                name:"Steve",
                id:"123"
            };
              
            document.getElementById("gfg").innerHTML = employee.name
                    + " has unique id " + employee.id ;
        </script>
    </body>
      
    </html>                    

    
    

    Output:

  • Example: This example uses [“property”] to access the object element.




    <!DOCTYPE html>
    <html>
      
    <head>
        <title>
            JavaScript Object Properties
        </title>
    </head>
      
    <body>
        <h1>neveropen</h1>
          
        <h3>JavaScript Object Properties</h3>
      
        <p>Using ["property"] to access an object</p>
          
        <p id="gfg"></p>
          
        <!-- Script to access an object -->
        <script>
            var employee = {
                name:"Steve",
                id:"123"
            };
              
            document.getElementById("gfg").innerHTML = employee["name"]
                    + " has unique id " + employee["id"] ;
        </script>
    </body>
      
    </html>                    

    
    

    Output:

  • Example: This example uses for…in loop to access the object element.




    <!DOCTYPE html>
    <html>
      
    <head>
        <title>
            JavaScript Object Properties
        </title>
    </head>
      
    <body>
        <h1>neveropen</h1>
          
        <h3>JavaScript Object Properties</h3>
      
        <p>Using for...in loop</p>
          
        <p id="GFG"></p>
          
        <!-- Script to use loop to access object content -->
        <script>
            var gfg = "";
            var employee = {
                name:"Steve",
                id:"123"
            };
              
            var z;
            for (z in employee) {
                gfg += employee[z] + " ";
            }
            document.getElementById("GFG").innerHTML = gfg;
        </script>
    </body>
      
    </html>                    

    
    

    Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments