// 객체활용 연관 텍스트 출력 함수
function AnimalSound(text)
{
  const Animal = {
    dog: '멍멍',
    cat: '야옹',
    bird: '짹짹',
  };

  return Animal[text] || '...not definded animal';
}


console.log(AnimalSound('dog'));

반응형

'아는 것이 힘 > IT세상' 카테고리의 다른 글

[Python] 크롤링 모듈 요약  (0) 2021.09.27
[python] 가상환경 설정  (0) 2021.09.09
상대경로  (0) 2021.08.23
VScode 단축키  (0) 2021.08.18
[PYTHON] vs code 가상환경 설정  (0) 2021.08.06

+ Recent posts