I have a very large array of objects and some of the objects have a nameless property. What is an efficient way to remove the property?
[ 
  ...
  {
    "phone_number": "***-***-****",
    "category": "Abc",
    "link_to_company": "www.example.com",
    "email": "test@test.com",
    "company_name": "test company",
    "": "123", // this need to be removed
    "status": 1
  },
  ...
]
 
     
    