Function toBinary( value )
- Description:
-
Converts the integer argument to a binary string consisting
only of 1s and 0s.
- Parameters:
-
- value (long integer)
- integer value
- Return Value (String):
- binary representation of
value
- Examples:
toBinary(42) = "101010"
toBinary(255^7) = "11111000"
- Signature:
- String toBinary(long)