Sunday, October 2, 2011

$.merge(Array,Array)

$.merge(Array first, Array second) returns Array
Merge two arrays together by concatenating them.

Example:

Merges two arrays.
$.merge( [0,1,2], [2,3,4] )
Result:
[0,1,2,2,3,4]

No comments:

Post a Comment