Difference between concat and push?

前端 未结 3 1873
萌比男神i
萌比男神i 2020-12-05 00:00

Why does a return of the push method cause \"Uncaught TypeError: acc.push is not a function\". But a return concat results in the correct solution?

相关标签:
3条回答
  • 2020-12-05 00:16

    The push() adds elements to the end of an array and returns the new length of the array. Thus your return here is invalid.

    The concat() method is used to merge arrays. Concat does not change the existing arrays, but instead returns a new array.

    Better to filter, if you want a NEW array like so:

    var arr = [1, 2, 3, 4];
    var filtered = arr.filter(function(element, index, array) {
      return (index % 2 === 0);
    });
    

    Note that assumes the array arr is complete with no gaps - all even indexed values. If you need each individual, use the element instead of index

    var arr = [1, 2, 3, 4];
    var filtered = arr.filter(function(element, index, array) {
      return (element% 2 === 0);
    });
    
    0 讨论(0)
  • 2020-12-05 00:23

    acc should not be an array. Look at the documentation. It can be one, but..

    It makes no sense at all to reduce an array to an array. What you want is filter. I mean, reduce using an array as the accumulator and concating each element to it technically does work, but it is just not the right approach.

    var res = [1, 2, 3, 4].filter(even);
    console.log(res);
    
    
    function even(number) {
      return (number % 2 === 0);
    }

    0 讨论(0)
  • 2020-12-05 00:24

    https://dev.to/uilicious/javascript-array-push-is-945x-faster-than-array-concat-1oki Concat is 945x slower than push only because it has to create a new array.

    0 讨论(0)
提交回复
热议问题