What is the procedure for removing an object from an array in typescript?
"revenues":[
{
"drug_id":"20",
"quantity":10
},
{
"drug_id":"30",
"quantity":1
}]
I am looking to delete the drug_id from all objects. Can you provide guidance on how to accomplish this? Thank You!