Skip to content

Instantly share code, notes, and snippets.

@acrosa
Created December 9, 2010 15:55
Show Gist options
  • Save acrosa/734878 to your computer and use it in GitHub Desktop.
Save acrosa/734878 to your computer and use it in GitHub Desktop.
var obj1 = { name: "Alejandro" }
var obj2 = { last: "Crosa", sayName: function (){ return this.name +" "+ this.last; } }
_.extend(obj1, obj2) // Extend obj1 with obj2's properties and methods
obj1.sayName()
=> "Alejandro Crosa"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment