If I have two objects:
const objA = { name: 'Tom', age: '20', location: 'London' };
const objB = { name: 'Jimmy', age: '35', occupation: 'Welder', hobbies: ['Football'] }
How can I get only the values that are only present in objA and not in objB, I want the result to be:
{
location: 'London'
}
Is there a method in Lodash for that?