Skip to content

Instantly share code, notes, and snippets.

@obaranovskyi
Last active January 17, 2022 10:46
Show Gist options
  • Save obaranovskyi/fdd3642685188a7e6cedf3e30e989b37 to your computer and use it in GitHub Desktop.
Save obaranovskyi/fdd3642685188a7e6cedf3e30e989b37 to your computer and use it in GitHub Desktop.
function valueCheck(value: string | number) {
if (typeof value === "string") {
// value has type string
} else if (typeof value === "number") {
// value has type number
} else {
value; // value has type never
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment