Extending Native Demo
Extending the Native Objects
Introduction
There are times you may ask yourself "Why isn't that part of MooTools?" and while
there are possibly a lot of answers to that it simply could be that it is something with only small usage.
For that reason MooTools made it easy for you to extend any native object like Arrays, Strings etc. to add the
functionality you want.
In this example you will learn how to extend the Array-Object with a custom function. For this we
create an Array with Fx.Tween instances and start the effect on all Array elements. You may need
to have a look at the source of this demo.
Execute Example
Why? Via the newly added method we do not have to loop through the Array with
Array.each to just start the same method with same arguments on all the elements in the
given Array. If you need that functionality more often it is better to just add another method
to the Native then creating pointless functions or writing the same code again and again.
You should get the idea!
Code:
Array.implement({
invoke: function(fn, args){
var result = [];
for (var i = 0, l = this.length; i < l; i++){
if(this[i] && this[i][fn])
result.push(args ? this[i][fn].pass(args, this[i])() : this[i][fn]());
}
return result;
}
});
Usage:
myArray.invoke('fn', args);