Returns the array that adds all the given elements
Optional
the arrays to inspect
the elements to remove
the array that adds all the given elements
addAll(undefined, ['bar']); // ['bar']addAll(['foo', 'bar'], undefined); // ['foo', 'bar']addAll(['foo', 'bar'], ['world']); // ['foo', 'bar', 'world'] Copy
addAll(undefined, ['bar']); // ['bar']addAll(['foo', 'bar'], undefined); // ['foo', 'bar']addAll(['foo', 'bar'], ['world']); // ['foo', 'bar', 'world']
Returns the array that adds all the given elements