Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- device in use
- 이미지 데이터 타입
- adb pair
- github pdf
- rolldown
- camera access
- Recoil
- silent printing
- Can't resolve
- animation
- 티스토리 성능
- Each child in a list should have a unique "key" prop.
- Git
- Failed to compiled
- custom printing
- electron-packager
- react-native-dotenv
- adb connect
- github 100mb
- react-native
- camera permission
- augmentedDevice
- html
- dvh
- ELECTRON
- vercel git lfs
- nextjs
- github lfs
- npm package
- ffi-napi
Archives
- Today
- Total
Bleeding edge
2022/10/04 - TIL 본문
자바스크립트에서 많이 사용하는 안티 패턴
안티패턴이란?
실제 많이 사용되는 패턴이지만 비효율적이거나 비생산적인 패턴
- 자바스크립트 루프
[1,2,3].map(i => console.log(`Logged to console ${i} times`))
// log
Logged to console 1 times
Logged to console 2 times
Logged to console 3 times
map은 원래 위와 같은 용도로 사용하는 것이 아니라
const myArray = [1, 4, 9, 16];
const myMap = myArray.map(x => x * 2);
console.log(myMap);
// expected output: Array [2, 8, 18, 32]
다음과 같이 각 Array의 구성요소들에 하나씩 콜백함수를 적용하기 위해 존재한다. 만일 위와 같은 용도로 사용하려면
for (let step = 0; step < 3; step++) {
// Runs 3 times
console.log(`Logged to console ${step + 1} times`)
}
// log
Logged to console 1 times
Logged to console 2 times
Logged to console 3 times
다음과 같이 사용하는 것이 좋다
- const, var, let
var는 블록 스코프에 영향을 받지 않기 떄문에 기존에 존재하는 식별자의 값을 더럽힌다. ES6 환경이라면, const나 let을 사용 하는 것이 좋다
- 불필요한 중첩
doSomething()
.then(function (result) {
// Forgot to return promise from inner chain
// unnecessary nesting
doSomethingElse(result)
.then((newResult) => doThirdThing(newResult));
})
.then(() => doFourthThing());
// Forgot to terminate chain with a catch!
다음과 같은 케이스에서는, then만 많고 에러를 잡는 catch가 없다
doSomething()
.then(function (result) {
return doSomethingElse(result);
})
.then((/* result ignored */) => doFourthThing())
.catch((error) => console.error(error));
다음과 같이 에러를 위한 캐치문도 작성해 주는 것이 좋다.
'ConnecTo' 카테고리의 다른 글
2022/10/06 - TIL (1) | 2022.10.06 |
---|---|
2022/10/05 - TIL (0) | 2022.10.05 |
2022/09/30 - TIL (1) | 2022.09.30 |
2022/09/29 - TIL (0) | 2022.09.29 |
2022/09/28 - TIL (1) | 2022.09.28 |