const txt = "naver"
if(txt=="naver"){
console.log("네이버")
}else if(txt=="daum"){
console.log("다음")
}else if(txt=="payco"){
console.log("페이코")
}else if(txt=="nate"){
console.log("네이트")
}else{
console.log("해당없음")
}
// ======================================
const array = {
"naver":"네이버",
"daum":"다음",
"payco":"페이코",
"nate":"네이트"
}
function array_name(array_type){
if(array[array_type]){
return array[array_type]
}else{
return "해당없음"
}
}
console.log(array_name("naver"))
텍스트 대치와 같은 if문의 경우, 배열을 이용하여 간결하게 사용가능
'js' 카테고리의 다른 글
[js]append 여러개 (자바스크립트) (0) | 2022.11.09 |
---|---|
[js]스크롤 애니메이션 IntersectionObserver (0) | 2022.11.08 |
[js]chart.js 차트 스크립트 (0) | 2022.10.24 |
[js]숫자를 한글로 바꾸기 (0) | 2022.10.21 |
[js]e.stopPropagation()과 e.preventDefault() 레어어팝업 클릭 (0) | 2022.10.11 |