The modified object
Error if input validation fails
const obj = { user: { name: 'Flavio Ever', age: 30 } };
removeProp(obj, 'user.name'); // Removes the name property
removeProp(obj, 'user.skills.0'); // Removes first element from array
removeProp(obj, 'user.profile.social'); // Removes entire social object
Removes a property from an object using a dot-notation path