간단한 별모양 피라미드 만들기.
for (var star = 1; star = 1; star -= 1){ console.log('*'.repeat(star)); } ***** **** *** ** * for(var star = 5; star >= 1; star -= 1){ console.log(' '.repeat(5-star) + '*'.repeat(star)) } ***** **** *** ** * for(var star = 9; star >= 1; star -= 2){ console.log(' '.repeat((9 - star) / 2) + '*'.repeat(star)) } ********* ******* ***** *** * 공백이 처음에 (9-9)/2 여서 0 , 그 다음 (9-7)/2 여서 1, 그 다음 (9-5)/2 여서 ..
2021.04.17