Created
December 28, 2014 05:47
-
-
Save wmakeev/63c750692588759c0ff6 to your computer and use it in GitHub Desktop.
Split the array into parts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var codeGroups = []; | |
for (var i = 0, len = productCodes.length; i < len; i += groupSize) { | |
codeGroups.push(_.first(_.last(productCodes, len - i), groupSize)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment