JSFiddle - React, Tailwind, and code Playground

by Zaiste

HTML

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

JavaScript

a = {
    qs: {
        one: 1,
        three: 2
    }
};
b = {
    qs: {
        two: 2,
        three: 3
    }
};

c = _.merge({}, a, b);

console.log(c);