/*for(i = 5 ; i >=1 ; i--){
let a = "";
for(j=0;j<i;j++){
a=a+"*"
}
console.log(a);
} 역삼각형 별찍기*/

요거랑


저 a라는 변수를 외부에 실행하면 이상하게 나오는데 왜 그런거임?