var x,y,chr; for(x=1; x<=3; x++) { chr=''; for (y=1; y<=2; y++) { chr=chr+("*"); } console.log(chr); }
Comment