Skip to content

Instantly share code, notes, and snippets.

@anton-rudeshko
Created August 2, 2013 10:37
Show Gist options
  • Save anton-rudeshko/6138984 to your computer and use it in GitHub Desktop.
Save anton-rudeshko/6138984 to your computer and use it in GitHub Desktop.
Аналог Array#join() для любых типов
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