Files
30-seconds-of-code/snippets/join.md
2022-12-04 22:20:49 +02:00

1000 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Join array into string array blog_images/couch-laptop.jpg 2018-01-01T12:18:40+02:00 2020-10-22T20:23:47+03:00

Joins all elements of an array into a string and returns this string. Uses a separator and an end separator.

  • Use Array.prototype.reduce() to combine elements into a string.
  • Omit the second argument, separator, to use a default separator of ','.
  • Omit the third argument, end, to use the same value as separator by default.
const join = (arr, separator = ',', end = separator) =>
  arr.reduce(
    (acc, val, i) =>
      i === arr.length - 2
        ? acc + val + end
        : i === arr.length - 1
          ? acc + val
          : acc + val + separator,
    ''
  );
join(['pen', 'pineapple', 'apple', 'pen'],',','&'); // 'pen,pineapple,apple&pen'
join(['pen', 'pineapple', 'apple', 'pen'], ','); // 'pen,pineapple,apple,pen'
join(['pen', 'pineapple', 'apple', 'pen']); // 'pen,pineapple,apple,pen'