Skip to content

javascript_notes

maxpleaner edited this page Jun 1, 2016 · 1 revision

Underscore Extend

  var inheritor = function() {}
  var addedFunctions = { foo: "bar" }
  console.log(_.extend(inheritor, addedFunctions).foo); // => "bar"
Clone this wiki locally