Skip to content

Instantly share code, notes, and snippets.

@scarvell
Last active August 29, 2015 13:57
Show Gist options
  • Save scarvell/9775117 to your computer and use it in GitHub Desktop.
Save scarvell/9775117 to your computer and use it in GitHub Desktop.
/**
* Guitar Tab template generator
*/
(function(strings){
Array.prototype.forEach.call(strings, function (s) {
var i = 0, str='';
while (i < 63) {
str += '-';
i++;
}
console.log("%s|%s|", s,str);
});
})(['e','B','G','D','A','E'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment