Skip to content

Instantly share code, notes, and snippets.

@bennycode
Created April 29, 2022 20:01
Show Gist options
  • Save bennycode/faa184dd2f154e6a05d9ad64b24a8f36 to your computer and use it in GitHub Desktop.
Save bennycode/faa184dd2f154e6a05d9ad64b24a8f36 to your computer and use it in GitHub Desktop.
Function Overloads in TypeScript
function sum(a: number, b: number): number;
function sum(a: string, b: string): string;
function sum(a: number | string, b: number | string): number | string {
if (typeof a === "number" && typeof b === "number") {
return a + b;
} else {
return `${parseInt(`${a}`, 10) + parseInt(`${b}`, 10)}`;
}
}
const sumAsNumber = sum(1000, 337);
const sumAsString = sum("1000", "337");
console.log(sumAsNumber, typeof sumAsNumber);
console.log(sumAsString, typeof sumAsString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment