I am getting a set of boolean values from my microservice.
"mon": true,
"tues": false,
"wed": false,
"thurs": true,
"fri": false,
"sat": true,
"sun": false,
And I need to convert the values with boolean value true to an array like following:
options = ['mon', 'thurs', 'sat']
How can I do it?