JSFiddle - React, Tailwind, and code Playground
by Eric Howe
JavaScript
var a = { 'f1': function(){var s='success';} };
var b = {'foo' : 'bar'};
var c = _.extend(b, a);
console.log(c);
var d = _.extend({name : 'moe'}, {age : 50});
console.log(d);