typescript optional parameters on a function 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 make a parameter optional in typescript
// Optional parameter
function foo(x?: number) {
console.log("x : "+ x);
}
foo();
foo(6);
Example 3: typescript make function argument optional
function multiply(a: number, b: number, c?: number): number {
if (typeof c !== 'undefined') {
return a * b * c;
}
return a * b;
}