Returns the array that adds the given element
Optional
the arrays to inspect
the element to add
the array that adds the given element
add(undefined, 'bar'); // ['bar']add(['foo', 'bar'], undefined); // ['foo', 'bar']add(['foo', 'bar'], 'world'); // ['foo', 'bar', 'world'] Copy
add(undefined, 'bar'); // ['bar']add(['foo', 'bar'], undefined); // ['foo', 'bar']add(['foo', 'bar'], 'world'); // ['foo', 'bar', 'world']
Returns the array that adds the given element