how to define optional parameter in typescript code example
Example 1: typescript optional parameters
sayHello(hello?: string) {
console.log(hello);
}
sayHello();
sayHello('world');
Example 2: how to define optional parameter in typescript
function functionName(par1: number, par2?: number) {
}
Example 3: typescript optional parameters
sayHello(hello: string = 'hello') {
console.log(hello);
}
sayHello();
sayHello('world');
Example 4: how to make a parameter optional in typescript
function foo(x?: number) {
console.log("x : "+ x);
}
foo();
foo(6);