overloadedFunction
overloadedFunction(a: number, b: number): stringParameters
a: numberb: 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: stringb: 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.