Created
August 2, 2013 10:37
-
-
Save anton-rudeshko/6138984 to your computer and use it in GitHub Desktop.
Аналог Array#join() для любых типов
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
function insertSeparator(array, separator) { | |
var index = array.length - 1; | |
while (index) array.splice(index--, 0, separator); | |
return array; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment