here I am creating a javascript object like this:
let obj = { "how": "fetch", "method": "get", "url": "^http://.*"};
And i want to remove the property url
to end up with new obj
as follows:
let obj = { "how": "fetch", "method": "get"};
What is the best way to do it?