#64ya7iiyio2dgoyehq
Read more stories on Hashnode
Articles with this tag
대수 타입(Algebraic type) 대수 타입이란 여러개의 타입을 합성해서 만드는 타입을 말한다. 합집합(Union) 타입 let a: string | number | boolean; a = 1; a = "hello"; a = true; Union 타입으로...