arrayZipper
zip two or more arrays to one
Usage:
var arrayZipper = myArrays = 0 3 6 8 1 4 7 2 5 resultArray = ; console;// -> [0, 1, 2, 3, 4, 5, 6, 7, 8]
var arrayZipper = myArrays = 'h' 'l' 'w' 'r' 'd' '!' 'e' 'o' 'l' ' ' 'o' 'l' resultArray = ; console;// -> [ 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!' ]
This repo is commitizen
friendly. Find more information about that here.
Author Christian Heyn