How do I remove an item from the orange frame?
I tried
product.splice(product[0]["elements"][0], 1);
But not working.
Just remove element by using delete:
delete
delete product[0]["elements"][0];