Skip to content

Instantly share code, notes, and snippets.

@akaramires
Created November 20, 2013 08:35
Show Gist options
  • Save akaramires/7559769 to your computer and use it in GitHub Desktop.
Save akaramires/7559769 to your computer and use it in GitHub Desktop.
var defaults = { validate: false, limit: 5, name: "foo" };
var options = { validate: true, name: "bar" };
var settings = $.extend({}, defaults, options);
// settings
// {validate: true, limit: 5, name: "bar"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment