JSFiddle - React, Tailwind, and code Playground

by tabalinas

JavaScript

var getOptions = function() {
    return {
        a: "value"
    };
};

var result = $.extend(getOptions(), { b: "anotherValue" });

console.log(result);
console.log(getOptions());