How to add a property to object with condition in javascript

Created at 25-Sep-2021 , By samar

How to add a property to object with condition in javascript

Good day, guys. In this post, we’ll look at how to solve the "How to add a property to object with condition in javascript" programming puzzle.

You can add property to object with condition in javascript. If the condition is true then it will add the property to object else it will not add the property to object.
  • Add a property to object with condition in javascript

    <script> 
    const condition = true
    
    const w3obj = {
      w3obj: 'w3codegenerator.com',
      ...condition && { name: 'samar' }
    }
    
    console.log(w3obj);
    </script>
    

    Output:

    { w3obj: 'w3codegenerator.com', name: 'samar' }

    It will add the property ({ name:'samar' }) to object if the condition is true else it will not add the property to object. You can change the value of condition const with false and you can see output is different. 

Back to code snippet queries related javascript

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.