if the the object has a peroperty prop . the function removes the preperty from the object and return treue code example
Example: removeProperty(obj, prop)
function removeProperty(obj, prop) {
if (obj[prop] != undefined) {
delete obj[prop];
return true;
} else {
return false;
}
return null;
}