3 ways to make big numbers readable in Ruby
Today, I came across the following method in my old code. (This comes from an application supporting calculations in the construction of concrete floors).
def l_factor
((bending_stiffness * 10000000000) / k) ** 0.25
end
This big number looks ...
rubywizards.com1 min read