UWA JavaScript Runtime

Welcome to Netvibes!

This documentation was generated by Natural Docs
forEach: function(fn,
bind)
Executes a provided function once per array element.
filter: function(fn,
bind)
Creates a new array with all elements that pass the test implemented by the provided function.
map: function(fn,
bind)
Creates a new array with the results of calling a provided function on every element in this array.
every: function(fn,
bind)
Tests whether all elements in the array pass the test implemented by the provided function.
some: function(fn,
bind)
Tests whether some element in the array passes the test implemented by the provided function.
indexOf: function(item,
from)
Returns the first index at which a given element can be found in the array, or -1 if it is not present.
normalize: function(sum)
Not documented
equals: function(compare)
Test wether the array equals to the one passed as parameter.
detect: function(iterator)
Not documented