-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
이펙티브 타입스크립트 3장 #20
Comments
24.일관성 있는 별칭 사용하기
const originObj = { list: [1, 2, 3] };
const aliasForList = originObj.list;
aliasForList[0] = 42;
console.log(originObj.list);
// list: [42, 2, 3]
const { list } = originObj;
originObj.list = [100, 200, 300];
console.log(originObj.list); // [42, 2, 3]
console.log(list); // [100, 200, 300]
25. 비동기 코드에는 콜백 대신 async 함수 사용하기
26. 타입추론에 문맥이 어떻게 사용되는지 이해하기
const lang = 'JS' // 타입은 'JS'
let lang = 'JS' // 타입은 string
27. 함수형 기법과 라이브러리로 타입 흐름 유지하기
|
19. 추론 가능한 타입을 사용해 장황한 코드를 방지
20. 다른 타입에는 다른 변수 사용하기
21. 타입 넓히기
22. 타입 좁히기
23. 객체 생성하기
The text was updated successfully, but these errors were encountered: