동일한 함수에서 배열 및 개별 입력을 처리하는 깔끔한 방법
4002 단어 javascript
doSomething
를 만들어야 한다고 가정해 보겠습니다. (1) 문자열과 (2) 문자열 배열의 두 인수를 모두 처리할 수 있도록 해야 합니다.이를 달성하기 위해 이전에는 다음과 같은 작업을 수행했습니다.
function doSomething(strs) {
function _doSomething(str) {
// some mysterious stuff happening here
console.log(str)
}
if (Array.isArray(strs)) {
return strs.map(str => _doSomething(str))
} else {
return _doSomething(strs)
}
}
doSomething(["hello", "world"])
doSomething("hello")
이제 재귀를 배웠으므로 다음을 수행합니다.
function doSomething(strs) {
if (Array.isArray(strs)) {
return strs.map(str => doSomething(str))
} else {
console.log(strs);
}
}
doSomething(["hello", "world"])
doSomething("hello")
표지 사진pepe nero on Unsplash
Reference
이 문제에 관하여(동일한 함수에서 배열 및 개별 입력을 처리하는 깔끔한 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/itsjzt/neat-way-to-handle-array-and-individual-inputs-in-same-function-3nnj텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)