Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 humanYears를 catYears 및 dogYears로 변환

<시간/>

문제

우리는 인간의 나이를 년으로 받아 각각 dogYears 및 catYears를 반환하는 JavaScript 함수를 작성해야 합니다.

입력

const humanYears = 15;

출력

const output = [ 15, 76, 89 ];

예시

다음은 코드입니다 -

const humanYears = 15;
const humanYearsCatYearsDogYears = (humanYears) => {
   let catYears = 0;
   let dogYears = 0;
   for (let i = 1; i <= humanYears; i++) {
      if (i === 1) {
         catYears += 15;
         dogYears += 15;
      }else if (i === 2) {
         catYears += 9;
         dogYears += 9;
      }else {
         catYears += 4;
         dogYears += 5;
      }
   }
   return [humanYears, catYears, dogYears];
};
console.log(humanYearsCatYearsDogYears(humanYears));

출력

[ 15, 76, 89 ]