Created
November 1, 2014 06:52
-
-
Save ready4god2513/32afd776c28d04fe44aa to your computer and use it in GitHub Desktop.
Revisions
-
ready4god2513 created this gist
Nov 1, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Array.prototype.alternate = function(other){ var result = []; this.forEach(function(i){ result.push(i); if(other.length > 0){ result.push(other.shift()); } }); return result; };