Dec-10-2020, 03:09 PM
Hi
I have this JSON-
How is the most efficient way of doing this?
I have this JSON-
{
"ticker_tape_1": [
{
"id": 1,
"Title": "Message 1",
"txt": "This is message 1",
"start_date": "01/04/2020",
"start_time": "16:20",
"duration": "1"
},
{
"id": 2,
"Title": "Message 2",
"txt": "This is message 2",
"start_date": "01/04/2020",
"start_time": "16:20",
"duration": "1"
}
]
}I need to find and delete from ticker_tape_1 the element with an id of 1How is the most efficient way of doing this?
