Hi All,
i have an list of array object need to convert string values into bool
ex: array below mentioned
0: {roleName: "Admin", roleId: 14, configuration: "false", projects: "false", fTs: "false", …}
1: {roleName: "PM", roleId: 15, configuration: "false", projects: "false", fTs: "false",...}
expected result
0: {roleName: "Admin", roleId: 14, configuration: false, projects: false, fTs: false, …}
1: {roleName: "PM", roleId: 15, configuration: false, projects: false, fTs: false,...}
need to convert above array object string into bool how to achieve this