Lodash Playground

Play with lodash functions

by shiv_veerashetty

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.5.1/lodash.min.js"></script>

JavaScript

console.log(_.isMatch(
  {
    a:1,
    b: {
      c: {
        d: 1,
        f:2,
        g:3
      }
    }
  },
  {
    b: {
      c: {
        f:2
      }
    }
  }
))