Within this list, I have an unalterable group of objects. My task is to change the value of the 'isReq' property to false for all objects except the one with the id 2.
[
{
'id': 1,
'name': 'Ram',
'Details': {
'isReq': true
}
},
{
'id': 2,
'name': 'dev',
'Details': {
'isReq': true
}
},
{
'id': 3,
'name': 'joe',
'Details': {
'isReq': true
}
}
]