Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created October 27, 2021 02:11
Show Gist options
  • Save dsibinski/3848759ec400644ce6b36326cb5b3e13 to your computer and use it in GitHub Desktop.
Save dsibinski/3848759ec400644ce6b36326cb5b3e13 to your computer and use it in GitHub Desktop.
function GetNumberOrLength(variable: string | number): number {
if (typeof variable === 'string') {
return variable.length;
} else {
return variable;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment