Hi!
Would you please tell me how to get rid of a few elements in an array?
Remove unnecessary elements.
I have an array:
[
{
"Archived": false,
"StartISEmpty": true,
"DueISEmpty": true,
"ClosedISEmpty": true,
"Task ID": "28kjmwb",
"Folder ID": "10838920",
"List ID": "21391085",
"Status ID": "c10838920_eHzay4Wd",
"Space ID": "2275966",
"Task Name": "task",
"Start Datetime": null,
"Date Updated": "2022-03-16T19:14:12+03:00",
"Due Datetime": null,
"Tags": [
],
"Folder Name": "Неосновное",
"List Name": "Clean PC",
"Date Closed": null,
"Status Name": "3 квартал",
"Status Color": "#af7e2e",
"Priority": null,
"Time spent": "00:00:00",
"Time estimate": "00:00:00"
}
]
I need to get one like this:
[
{
"Archived": false,
"Task ID": "28kjmwb",
"Folder ID": "10838920",
"List ID": "21391085",
"Status ID": "c10838920_eHzay4Wd",
"Space ID": "2275966",
"Task Name": "task",
"Start Datetime": null,
"Date Updated": "2022-03-16T19:14:12+03:00",
"Due Datetime": null,
"Tags": [
],
"Folder Name": "Неосновное",
"List Name": "Clean PC",
"Date Closed": null,
"Status Name": "3 квартал",
"Status Color": "#af7e2e",
"Priority": null,
"Time spent": "00:00:00",
"Time estimate": "00:00:00"
}
]
How to get rid of these (3 items):
“StartISEmpty”: true,
“DueISEmpty”: true,
“ClosedISEmpty”: true,
???
Thank you!