typescript optionalparams code example
Example 1: typescript optional parameters
// Optional Parameters
sayHello(hello?: string) {
console.log(hello);
}
sayHello(); // Prints 'undefined'
sayHello('world'); // Prints 'world'
Example 2: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}