index.ts
function foo(name: string, age?: number) { console.log(name + age); } foo("a"); // "aundefined"