Javascript Array zeroFilledArray(size)
Array.zeroFilledArray = function(size) { return new Array(size + 1).join('0').split(''); }