Scala Double /(x: Byte) method
In Scala, Double is a 64-bit floating point number, which is equivalent to Javaâs double primitive type. The /(x: Byte) method is utilized to return the quotient of this value and given value x. Method Definition - def /(x: Byte): Double Returns - Returns the quotient of this value and x. Example #1