overloadedFunction
overloadedFunction(a: number, b: number): stringParameters
- a: number
- b: number
Returns string
overloadedFunction(a: string, b: string): stringConcatenates two strings.
The documentation site allows you to toggle between the different overloads of a function. The implementation signature of the overloaded function is not included in the documentation.
Parameters
- a: string
- b: string
Stringifies and concatenates two numbers into a single string.
The documentation site allows you to toggle between the different overloads of a function. The implementation signature of the overloaded function is not included in the documentation.