Function toString( objVal )
- Description:
-
Turns any value into a string.
As applied to existing string values this isn't really useful,
but it means that you can apply
toString()
to any value without knowing its type
and get a useful return from it.
- Parameters:
-
- objVal (Object)
- non-numeric value
- Return Value (String):
- a string representation of
objVal
- Signature:
- String toString(Object)