Module

x/lodash_es/mod.ts>concat

lodash for deno use
Latest
function concat
import { concat } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

Creates a new array concatenating array with any additional arrays and/or values.

Examples

var array = [1]; var other = _.concat(array, 2, [3], [[4]]);

console.log(other); // => [1, 2, 3, [4]]

console.log(array); // => [1]