0
0
Typescriptprogramming~20 mins

Why type aliases are needed in Typescript - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Type Alias Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
What is the output of this TypeScript code using type aliases?
Consider the following TypeScript code that uses a type alias. What will be the output when this code runs?
Typescript
type ID = string | number;

function printId(id: ID) {
  if (typeof id === 'string') {
    console.log(`ID as string: ${id.toUpperCase()}`);
  } else {
    console.log(`ID as number: ${id}`);
  }
}

printId('abc123');
printId(456);
ATypeError at runtime
BID as string: abc123\nID as number: 456
CID as number: abc123\nID as string: 456
DID as string: ABC123\nID as number: 456
Attempts:
2 left
💡 Hint
Think about how the function checks the type of the id and what methods are called on it.
🧠 Conceptual
intermediate
1:30remaining
Why use type aliases instead of repeating types?
Why are type aliases useful in TypeScript when you have complex or repeated types?
AThey automatically optimize code performance at runtime.
BThey help avoid repeating complex type definitions and make code easier to read and maintain.
CThey replace interfaces completely and are required for all object types.
DThey allow JavaScript code to run without errors.
Attempts:
2 left
💡 Hint
Think about how type aliases help with code clarity and reuse.
🔧 Debug
advanced
2:00remaining
What error does this TypeScript code raise?
This code uses a type alias but has a mistake. What error will TypeScript show?
Typescript
type User = {
  name: string;
  age: number;
};

const user: User = {
  name: 'Alice',
  age: '25'
};
ASyntaxError: Unexpected token
BProperty 'name' is missing in type.
CType 'string' is not assignable to type 'number'.
DNo error, code runs fine.
Attempts:
2 left
💡 Hint
Check the type of the 'age' property in the object compared to the alias.
🚀 Application
advanced
2:00remaining
How does a type alias improve this function's parameter clarity?
Given this function signature without a type alias, how would using a type alias improve clarity and maintenance?
Typescript
function sendMessage(user: { id: number; name: string }, message: string) {
  console.log(`${user.name} says: ${message}`);
}
ABy defining a type alias for the user object, the function signature becomes cleaner and easier to reuse.
BBy converting the function to use any type for user.
CBy removing the user parameter entirely.
DBy hardcoding the user values inside the function.
Attempts:
2 left
💡 Hint
Think about how naming a type helps when the same structure is used multiple times.
Predict Output
expert
2:30remaining
What is the output of this TypeScript code with nested type aliases?
Analyze the code below using nested type aliases. What will be printed to the console?
Typescript
type Coordinates = { x: number; y: number };
type Point = Coordinates & { label: string };

const point: Point = { x: 10, y: 20, label: 'A' };

console.log(`${point.label}: (${point.x}, ${point.y})`);
AA: (10, 20)
B(10, 20): A
CTypeError: Cannot read property 'label' of undefined
DSyntaxError: Unexpected token '&'
Attempts:
2 left
💡 Hint
Look at how the type aliases combine properties and how the object is created.