typescript optional parameter with default value code example
Example 1: typescript optional parameters
// Optional Parameters
sayHello(hello?: string) {
console.log(hello);
}
sayHello(); // Prints 'undefined'
sayHello('world'); // Prints 'world'
Example 2: how to define optional parameter in typescript
function functionName(par1: number, par2?: number) {
}
Example 3: typescript optional parameters
// Default Parameters
sayHello(hello: string = 'hello') {
console.log(hello);
}
sayHello(); // Prints 'hello'
sayHello('world'); // Prints 'world'