250x250
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 | 31 |
Tags
- 백엔드
- HTML
- CSS
- hover
- javascript
- html5
- front-end
- 프론트엔드
- css3
- 애니메이션
- 풀스택
- 개발자
- jQuery
- MAC
- button
- php
- effect
- image
- IOS
- react
- Animation
- 자바스크립트
- 비전공자
- xcode
- 비전공 개발자
- iPhone
- ipad
- iOS 개발자
- SWIFT
- keyframes
Archives
- Today
- Total
목록타입스크립트 (1)
비전공자 개발일기
Javascript - Typescript
환경 설정 npm npm i typescript -g node_modules/.bin/tsc tsc source.ts npm init -y npm i typescript -D Type annotation: 변수가 어떤 파입인지 지정하는 것 typescript let a: number; a = 39 function hello(b: number) { } hello(39)Type script vs Javascript Static Types(set during development) vs Dynamic Types(resolved at runtime) 프로그램이 유용하려면, 가장 간단한 데이터 단위로 작업 할 수 있어야 함(number, string, boolean 등) Typescript에서, Javascrip..
Javascript
2021. 8. 5. 22:39