Показать сообщение отдельно
  #5 (permalink)  
Старый 09.09.2016, 09:45
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,124


<script src="http://stacksnippets.net/scripts/snippet-javascript-console.min.js?v=1"></script>

  <script>
Array.prototype.reduce2 = function(c, a) {
    var b = 0;
    for (void 0 == a && (a = this[b], b = 1); b < this.length; b++) a = c(a, this[b]);
    return a
};
 function add(a, b) { return a + b }
 function mul(a, b) { return a * b }
 function foo(a, b) { return a.concat(b) }
 var a = [1, 2, 3, 4]
 console.log(a.reduce(add), a.reduce2(add)) // 10 10
 console.log(a.reduce(add, 10), a.reduce2(add, 10)) // 20 20
 console.log(a.reduce(mul), a.reduce2(mul)) // 24 24
 console.log(a.reduce(foo, ''), a.reduce2(foo, '')) // 1234 1234

  </script>
Ответить с цитированием