일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바스크립트
- Baekjoon
- js
- 네트워크
- 프로그래머스
- 프로그래머스 JS
- CSS
- 그리디
- programmers
- javascript
- 알고리즘
- 코딩테스트 입문
- React
- bfs/dfs
- 코딩테스트
- 이것이 코딩테스트다 with 파이썬
- Next.js
- Java
- greedy
- node.js
- CLASS
- Lv2
- 백준
- SWEA
- 자바
- 연습문제
- Python
- Typescript
- 정렬
- Lv1
Archives
- Today
- Total
개발야옹
[ Typescript ] rest parameter type지정 본문
rest parameter ( spread operator ... )
function myFunction(...a){
}
myFunction(1,2,3,55,12);
myFunction(5,2,3);
// (...a)가 rest parameter이며, rest parameter는 다른 parameter 귀에 작성해야한다.
// rest parameter는 전부 array로 받아오게된다.
rest parameter type 지정
function 함수( ...a : number[] ){
console.log(a);
}
함수(1,2,3,5,2,5,6);
spread operator ( ... )
괄호를 벗겨준다.
let array1 = [1,2];
let array2 = [3,4,5];
let array3 = [ ...array1, ...array2 ];
// array3 === [1,2,3,4,5]
destructuring
let [ x, y ] = ["hello", 404]; // destructuring
console.log(x); // "hello"
console.log(y); // 404
let { name, age } = { name : "Yeonji", age : 22 } // destructuring
function 함수( { name, age, address } : { name : string, age : number, address : string } ) //destructuring
console.log( name, age, address );
}
함수({ name : "Minseo", age : 21, address : "Seoul" });
728x90
'Language > Typescript' 카테고리의 다른 글
[ Typescript ] .ts 와 .tsx (0) | 2021.12.19 |
---|---|
[ Typescript ] public, private, protected, static keyword (0) | 2021.12.19 |
[ Typescript ] interface (0) | 2021.12.18 |
[ Typescript ] class type 지정 (0) | 2021.12.18 |
[ Typescript ] Litertal Types & as const (2) | 2021.12.17 |