How can I compare these below two JavaScript objects to be equal and true
var obj1 = {
  'a': 'something',
  'b': null
};
var obj2 = {
  'a': 'something',
  'b': ''
}
var isTrue = _.isEqual(obj1, obj2);
alert(isTrue);<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.15/lodash.min.js"></script> 
     
    