javascript map add new property to object and return all values code example
Example: map object and add new property javascript
Results.map(obj=> ({ ...obj, Active: 'false' }))
Results.map(obj=> ({ ...obj, Active: 'false' }))