Skip to content

Instantly share code, notes, and snippets.

@ready4god2513
Created November 1, 2014 06:52
Show Gist options
  • Save ready4god2513/32afd776c28d04fe44aa to your computer and use it in GitHub Desktop.
Save ready4god2513/32afd776c28d04fe44aa to your computer and use it in GitHub Desktop.
Array.prototype.alternate = function(other){
var result = [];
this.forEach(function(i){
result.push(i);
if(other.length > 0){
result.push(other.shift());
}
});
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment