As an example, we can pose an object in the following way:
var myObject = {
"Event": "Prueba",
"method": "post",
"url": "http://"
};
What is the best way to remove the url
property to end with a new myObject
object ?, example:
var myObject = {
"Event": "Prueba",
"method": "post"
};