Top "Extend" questions

Cause a unit of code (a class in POO, a style class in CSS ...) to cover a wider area.

Difference between jQuery.extend and jQuery.fn.extend?

I am trying to understand the jquery plugin syntax, because I want to merge two plugins into one. The blinker …

jquery syntax plugins extend
Ways to extend Array object in javascript

i try to extend Array object in javascript with some user friendly methods like Array.Add() instead Array.push() etc... …

javascript arrays class extend
Add properties to stdClass object from another object

I would like to be able to do the following: $obj = new stdClass; $obj->status = "success"; $obj2 = new stdClass; $…

php object properties extend stdclass
JavaScript equivalent of jQuery's extend method

Background I have a function that takes a config object as an argument. Within the function, I also have default …

javascript jquery object extend
How to extend an array in Java without changing its name

I wonder if it's possible to extend an array in Java but without changing its name, since I have multiple …

java arrays extend
deep extend (like jQuery's) for nodeJS

I am struggling with deep copies of objects in nodeJS. my own extend is crap. underscore's extend is flat. there …

jquery node.js extend deep-copy
Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.…

javascript extjs extend extjs3 superclass
Extending a java ArrayList

I'd like to extend ArrayList to add a few methods for a specific class whose instances would be held by …

java arraylist extend
jquery extend vs angular extend

What is the difference between these two extend functions? angular.extend(a,b); $.extend(a,b); While the jquery.extend …

javascript jquery angularjs extend
Python:Extend the 'dict' class

I have to solve this exercise: Python's dictionaries do not preserve the order of inserted data nor store the data …

python extend dictionary