2

I was trying to loop over a map. But it converted my decimal number with scientific notation.

    var myvar = mapOf("x" to 0.000001, "y" to 0.00000023)

    for((k, v) in myvar){
        println(v)
    }
//Its showing the result
1.0E-6
2.3E-7

How can I convert this in regular decimal with places Please help.

0 Answers0