Description:
Returns the value of this Byte as a byte.
Example
Byte by = new Byte("20");
byte byteby = by.byteValue();
Logger.log("byte value: " + byteby);
The example above returns a byte value and writes it to the logger.