JSFiddle - React, Tailwind, and code Playground

by justinwyllie

JavaScript

var A = {a: {a: 'a', b: 'b'}, b: {a: 'a', b: 'b'}}
var B = {a: {a: 'a', b: 'b'}, b: {a: 'a2', b: 'b2'}, c: {a: 'a', b: 'b'}}

var C = _.extend(A, B)

console.log(C)