function fill(n, glue){ return new Array(n+1).join(glue); } alert([fill(3, '0'),fill(4, 'a'),fill(2, 'ololo')].join('\n'))