I'm familiar with Ruby operator and its work flow and use cases but at a place I'm confused with . in expression.
3.**2+1 is giving result 27
instead 3.**2 gives 9 and
3**2+1 gives 10 it is okay but I'm confuse on 3.**2+1
anything that I'm missing with dot . operator here.
Thanks in advance!