Javascript: How To Merge The String Values Of Two Arrays?
I want to use the _.zip function of Underscore.js to create pairs from two arrays. var a = ['alpha', 'beta', 'gamma']; var b = ['one', 'two', 'three']; var pairs = _.zip(a, b); ale
Solution 1:
I filed a bug for the problem.
Post a Comment for "Javascript: How To Merge The String Values Of Two Arrays?"