var a=8, b=8, str=''; // b-строки, a-столбцы while(b--) str += (b%2?'#.':'.#').repeat(a/2)+((a%2)?b%2?'#':'.':'')+'\n'; console.log(str);