Intersection

    TIL | Union, Intersection

    Union, Intersection Union(|, or) type Direction = "right" | "left" | "up" | "down"; //string Literal Types // const move = function (direction: Direction) { console.log(direction); }; move("right"); // const print = (value: string | number) => { console.log(value); }; print(1); // 1(number) print("1"); // 1(string) JS의 논리연산자중 OR을 뜻하는 ||와 같이 A이거나 B이거나를 뜻한다. 위 move 함수의 인자로 Direction 타입을 지정하였으며, 해당..