javascript
더 깔끔한 조건문 사용하기
hjcode
2022. 5. 12. 10:56
function test(fruit) {
if (fruit === 'apple' || fruit === 'strawberry') {
console.log('red');
}
}
이러한 조건문이 있는데 여기에 조건을 더 추가를 한다면 || 를 확장하게 될겁니다.
function test(fruit) {
if (fruit === 'apple' || fruit === 'strawberry' || fruit === 'cherry' || fruit === 'cranberries' ) {
console.log('red');
}
}
이것을 Array.includes 를 사용하여 간결하게 쓸 수 있습니다.
function test(fruit) {
const fruitsList = ['apple', 'strawberry', 'cherry', 'cranberries'];
if (fruitsList.includes(fruit)) {
console.log('red');
}
}
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/includes
반응형