* NodeJs Download url
https://nodejs.org/en/download
* VSCode PlugIn List
색 테마 : Night Owl
파일 아이콘 테마 : Meterial Icon Theme
문법검사 : ESLint
실습 환경 보조 : Live Server
기타
Prettier, Project Manager , Auto Close Tag, GitLens, Atom Keymap , Jetbrains IDE Keymap
-----------------------------------------------------------------------------------------
Type Script 문법
변수 : 타입;
interface 객체명() : 리턴값 {
변수 : 타입;
}
| : 유니온으로 A | B 인터페이스의 두 객체(A.B )에 해당하는 공통 변수에 대해서만 가능
& : 인터페이스의 A 또는 B 에 있는 변수에 대해서 가능
* type guard
function is해당타입(target: 인자) : target is 리턴인자 {
}
ex) function isDeveloper(target : Developer | Person) : target is Developer {
return (target as Developer).skill !== undefined;
}
* typescript 사이트
https://www.typescriptlang.org/
- playground
* typescript 핸드북 참고 블로그
https://joshua1988.github.io/ts/guide/generics.html
'JavaScript' 카테고리의 다른 글
[script] select 박스 선택시 웹 접근성 준수 (0) | 2011.06.27 |
---|---|
[JavaScript] Javascript 에서 reload (0) | 2010.10.27 |
[Script] display 옵션의 'none' 과 'inline' 과 'block'의 차이점 (0) | 2010.09.01 |
[script] 이미지 크게 보기 script (0) | 2010.08.03 |
[Script] 이미지(img) 엑박 안뜨게 하기!! (0) | 2010.07.15 |