// Получаем значение по индексу
Array.prototype.valueOf = function(i)
{
  return this[i];
}