TypeScript Defining a Union Type Last Updated : 28 Apr, 2025 Comments Improve Suggest changes Like Article Like Report In this article, we are going to learn about Defining a Union Type in Typescript. TypeScript is a popular programming language used for building scalable and robust applications. In TypeScript, a union type allows a variable to have one of several possible types. You can define a union type by using the | (OR) operator to specify multiple types as options. Syntax:type UnionType = Type1 | Type2 | Type3 | ...;Where- UnionType is the name you choose for your custom union type.Type1, Type2, Type3, ...: these are the individual types that you want to include in the union. You can specify any number of types, and the variable of UnionType can have values of any of these types. This can be string, number, etcExample 1: In this example, We define a union type called Result that can hold values of either number or string types. We declare a variable value of type Result and assign it different values, including a number and a string.TypeScript will allow assignments of values that are either numbers or strings, but it will raise an error when you try to assign a boolean value, as it's not part of the union type. JavaScript // Step 1: Identify the Types type Result = number | string; // Step 2: Define the Union Type // Step 3: Use the Union Type let value: Result; // Valid, as 42 is a number value = 42; // Valid, as "Hello" is a string value = "Hello! GeeksforGeeks"; // value = true; // Error, as boolean is not part of the union type // Output depends on the assigned value console.log(value); // Step 4: Compile and Verify Output: Example 2: This example shows 'narrowing' in union type. we have used typeof checks as type guards to narrow down the possible types within the union. Depending on the type, we perform different operations and log messages. We call the narrowUnion function with values of different types, such as a string, a number, a boolean, and null. JavaScript // Define a union type type MyUnion = string | number | boolean; // Function to narrow the union type function narrowUnion(value: MyUnion): void { if (typeof value === "string") { console.log("Value is a string:", value.toUpperCase()); } else if (typeof value === "number") { console.log("Value is a number:", value * 2); } else if (typeof value === "boolean") { console.log("Value is a boolean:", !value); } else { console.log("Value is of an unknown type:", value); } } // Example usages narrowUnion("GeeksforGeeks"); narrowUnion(99); narrowUnion(true); // It will show error // Argument of type 'null' is not // assignable to parameter of type 'MyUnion'. narrowUnion(null); Output: Comment More infoAdvertise with us Next Article Defining array with multiple types in TypeScript 21mcsrltd Follow Improve Article Tags : TypeScript Geeks Premier League 2023 Similar Reads How to Return a Union Type in TypeScript ? In TypeScript, a union type is a powerful way to express a variable that can be one of several types. Union types are used when a function or variable is expected to support multiple types of input. Union types are defined using the pipe (|) symbol between two or more types. This indicates that a va 4 min read Data types in TypeScript In TypeScript, a data type defines the kind of values a variable can hold, ensuring type safety and enhancing code clarity.Primitive Types: Basic types like number, string, boolean, null, undefined, and symbol.Object Types: Complex structures including arrays, classes, interfaces, and functions.Prim 3 min read Union Type to Intersection Type in TypeScript To Transform union type to intersection type we have different approaches. In this article, we are going to learn how to Transform union type to intersection type. Below are the approaches used to Transform union type to intersection type: Table of Content Using Distributive Conditional TypesUsing C 3 min read Defining array with multiple types in TypeScript TypeScript is a statically typed language. So, we can create an array with explicit types to store entries of only specified types inside it. If an array is declared with only one explicit data type specified, then we can store the data of that particular data type inside that array. If you try to s 4 min read TypeScript Union The TypeScript union has the ability to combine one or two different types of data (i.e., number, string, float, double, etc). It is the most powerful way to express a variable with multiple types. Use pipe ('|') symbol to combine two or more data types to achieve Union type. Syntax: (type1|type2|ty 3 min read How to Create a Union Type from Nested Array in TypeScript ? TypeScript developers often encounter scenarios where they need to represent a value that could be one of several different types. TypeScript's union types provide a solution to this problem by allowing variables to hold values of multiple types. However, when dealing with nested arrays, each nested 3 min read Like