['test',false,12].each( function() { alert(this); })
Array.prototype.each = function(fn) { for(var el in this) { fn(this[el]); } }