
How to add a property to object with condition in javascript
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.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
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.
Random Code Snippet Queries: Javascript
- How to preview a word document in HTML using javascript
- Check if value exists in array javascript
- Multidimensional array example javascript
- How to crop multiple images with cropper js
- Uncaught TypeError: Illegal invocation
- How to pass array as arguments to function in javascript
- How to preview video before uploading in javascript
- How to remove duplicate values from array in javascript
- Cropper js with multiple images
- Generate 6 digit random number in javascript
- How to echo array in Javascript
- Remove hostname from URL in javascript
- Javascript to print Fibonacci series upto 15 Observations
- How to display for slash as a string in javascript HTML
- Javascript get data-id attribute value
- Json stringify
- Copy one array to another in javascript
- Get hostname from URL in javascript
- How to Set data to localstorage in javascript
- How to use JavaScript to search for items in a list
- Short-circuits conditionals
- Javascript get only 10 characters from string
- Trim the leading and trailing comma from string in Javascript
- How to get query string value in javascript
- ReferenceError: $ is not defined