Currently my code renders the number:
x = 0.000092627861766
p x
as something like a BigInt format such that:
=> 9.0e-05
Is there a method I can call on the variable to return a rounded floating point number (in either number or string format) such that:
x.some_method
# Always show N number of digits after the initial decimal point.
=> 0.00009263
OR
=> "0.00009263"