Version: v0.7.1 - Beta.  We welcome contributors & feedback.

List.pushAll

pushAll($anotherList) -> self

Description

Add all items of another List to this List.

['a', 'b'].pushAll(['c', 'd'])
//= ['a', 'b', 'c', 'd']

See Also