Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/concat.js";

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]