Mark optional parameters with ?. They can be omitted when calling.
function greet(name: string, greeting?: string) {
return `${greeting || "Hello"}, ${name}`;
}
greet("Alice"); // "Hello, Alice"
greet("Alice", "Hi"); // "Hi, Alice"
Optional parameters must come after required ones.