typesNullableOn this pageNullable 제네릭 타입으로 넣어준 타입과 더불어 null을 허용하는 타입입니다. Interface typescripttype Nullable<T> = T | null; Usage typescripttype Test = Nullable<string>; // string | nullconst test: Nullable<string> = 'test';const test2: Nullable<string> = null;