Article image Optional and Default Parameters

22. Optional and Default Parameters

Page 22 | Listen in audio

In TypeScript, optional and default parameters are powerful features that enhance the flexibility and robustness of functions. They allow developers to write more adaptable and concise code by providing mechanisms to handle functions with varying numbers of arguments and to set default values for parameters. Understanding how to effectively use these features can significantly improve the quality of your TypeScript programs.

First, let's delve into optional parameters. In JavaScript, functions can be called with any number of arguments, regardless of how they are defined. This flexibility is often useful, but it can also lead to errors if not handled properly. TypeScript addresses this potential issue by allowing developers to specify optional parameters in function definitions. An optional parameter is indicated by a question mark (?) following the parameter name.

Consider the following example:

function greet(name: string, greeting?: string): string {
    if (greeting) {
        return `${greeting}, ${name}!`;
    } else {
        return `Hello, ${name}!`;
    }
}

console.log(greet('Alice')); // Output: Hello, Alice!
console.log(greet('Bob', 'Good morning')); // Output: Good morning, Bob!

In this example, the greet function takes two parameters: name and greeting. The greeting parameter is optional, as indicated by the question mark. If a value for greeting is not provided when the function is called, it defaults to undefined, and the function uses a default greeting of "Hello". This makes the function more flexible, as it can be called with either one or two arguments.

Optional parameters must be placed after any required parameters in the function signature. This is because TypeScript uses the position of arguments to determine which parameters they correspond to. Placing a required parameter after an optional one would create ambiguity, as there would be no way to know whether an omitted argument was intended for the optional or required parameter.

Now, let's explore default parameters. Default parameters allow you to specify a default value for a parameter. If no argument is provided for that parameter when the function is called, the default value is used. This feature can be particularly useful for simplifying function calls and reducing the need for additional logic to handle missing arguments.

Here is an example of a function with a default parameter:

function multiply(a: number, b: number = 1): number {
    return a * b;
}

console.log(multiply(5)); // Output: 5
console.log(multiply(5, 2)); // Output: 10

In this example, the multiply function has a default parameter b with a default value of 1. If b is not provided when the function is called, it defaults to 1. This allows the function to be used for both simple multiplication and more complex calculations without requiring the caller to always provide both arguments.

Default parameters can be combined with optional parameters to create even more flexible functions. When using both features together, it's important to remember that optional parameters should still appear after required parameters. However, default parameters can be placed anywhere in the function signature, as their default values provide a clear indication of their intended use.

Consider the following example:

function buildName(firstName: string, lastName: string = 'Doe', middleName?: string): string {
    if (middleName) {
        return `${firstName} ${middleName} ${lastName}`;
    } else {
        return `${firstName} ${lastName}`;
    }
}

console.log(buildName('John')); // Output: John Doe
console.log(buildName('John', 'Smith')); // Output: John Smith
console.log(buildName('John', 'Smith', 'Paul')); // Output: John Paul Smith

In this example, the buildName function has a required parameter firstName, a default parameter lastName, and an optional parameter middleName. The default value for lastName is "Doe", and middleName is optional. This allows the function to be called with varying numbers of arguments while still providing sensible default behavior.

One of the advantages of using default parameters is that they can be expressions, not just constant values. This means that you can compute default values at runtime based on other parameters or external conditions. This adds another layer of flexibility to your functions.

Here is an example of using an expression for a default parameter:

function calculateDiscount(price: number, discount: number = price * 0.1): number {
    return price - discount;
}

console.log(calculateDiscount(100)); // Output: 90
console.log(calculateDiscount(100, 20)); // Output: 80

In this example, the calculateDiscount function has a default parameter discount that is calculated as 10% of the price if no discount is provided. This dynamic default value allows the function to adapt to different pricing scenarios without requiring the caller to always specify a discount.

Both optional and default parameters contribute to writing cleaner and more maintainable code. They reduce the need for overloading functions or writing multiple versions of a function to handle different argument configurations. By leveraging these features, you can create more versatile and user-friendly APIs that accommodate a wide range of use cases.

It's also worth mentioning that TypeScript's type inference works seamlessly with optional and default parameters. When you define a function with these parameters, TypeScript automatically infers the types and ensures that any arguments passed in align with the expected types. This provides additional safety and helps catch potential errors at compile time rather than at runtime.

In summary, optional and default parameters in TypeScript are essential tools for creating flexible and robust functions. They enhance the language's ability to handle varying numbers of arguments and provide sensible default behavior, reducing the need for extensive error handling and input validation. By mastering these features, you can write more concise, readable, and efficient TypeScript code that meets the diverse needs of your applications.

Now answer the exercise about the content:

What is the purpose of using optional and default parameters in TypeScript functions?

You are right! Congratulations, now go to the next page

You missed! Try again.

Article image Function Overloads

Next page of the Free Ebook:

23Function Overloads

6 minutes

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text