TypeScript
-
[TypeScript] typeTypeScript 2023. 12. 20. 17:57
타입을 지정할 때 : 타입 ( string, number,...) readonly type Age = number; type User = { readonly name : string; age?: Age } const addUser = (name:string) : User => ({name}) const kitty = addUser('kitty') kitty.age = 21 누군가 이름을 바꾸려고 하면 kitty.name = 'coco' // => error 오류가 남 =>readonly 불변성을 가지게 됨 => push 불가능 => map이나 filter는 가능 => 원본을 수정하지 않고 새로운 배열을 만드는것이기 때문 any const a = [1,2,3,4] const b = true a + b //..