array-concat

Returns a new array comprised of the given array's contents with the given value appended.

Usage no npm install needed!

<script type="module">
  import arrayConcat from 'https://cdn.skypack.dev/array-concat';
</script>

README

array-concat

Returns a new array comprised of the given array's contents with the given value appended.

Build Status Code Climate js-standard-style

npm install array-concat --save

You can also use Duo, Bower or download the files manually.

npm stats

npm NPM downloads David

Overview

Returns a new array comprised of the given array's contents with the given value appended. Pass an array as the second argument to append multiple values.

API Example

Pointful
var concat = require('array-concat')
concat(['a', 'b'], ['c', 'd'])
//=> ['a', 'b', 'c', 'd']
Pointfree Style
var concat = require('array-concat')
var list = [['b'], ['c'], ['d']]

list.map(concat(['a']))
//=> [['a', 'b'], ['a', 'c'], ['a', 'd']]

API

concat(list, value)

arguments
  • list (array).
  • value (any).
returns
  • (array) Returns an array comprised of the given array's contents with the given value(s) appended.

Related

Alternatives

Contributing

SEE: contributing.md

Licenses

GitHub license