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" });
'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 |