function - (function) Function executed for each key/value pair in the Table instance; passed two arguments (key and value).
bind - (object, optional) The object to be used as 'this' in the function. For more information see Function:bind.
Returns
(object) This Table instance.
Examples
var myTable = new Table();
// first set some values
myTable.set($('myForm'), {foo: 'bar'});
myTable.set(myClassInstance, $$('.someElements'));
// and now iterate over them
myTable.each(function(value, key){
console.log(value, key);
});