Skip to content

Instantly share code, notes, and snippets.

@ChrisMissal
Created September 28, 2012 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisMissal/3797195 to your computer and use it in GitHub Desktop.
Save ChrisMissal/3797195 to your computer and use it in GitHub Desktop.
Extending objects in Ext JS
var start = {
id: 123,
count: 41,
desc: 'this is information',
title: 'Base Object',
tag: 'uncategorized',
values: [1,1,2,3,5,8,13]
};
var more = {
name: 'Los Techies',
tag: 'javascript'
};
var extra = {
count: 42,
title: null,
desc: undefined,
values: [1,3,6,10]
};
var extended = Ext.apply(start, more, extra);
console.log(JSON.stringify(extended));
{
"id": 123,
"count": 42,
"title": null,
"tag": "javascript",
"values": [1,3,6,10],
"name": "Los Techies"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment