function 보지(n) {
   var 자지 = 1;
   while(n > 1) {
    자지 *= n;
    n--;
   }
   return 자지;
}

console.log(보지(4));


24 이상 강의를 마친다.