var d = 10; var mas = []; var str = ''; for (var i = 0; i <= d; i++) { str = '(' + i + ', ' + (d - i) + ')'; mas.push(str); } alert(mas);