gets the precision of a number (how many decimal digits)
getPrecision(2.1) //1getPrecision(9.65) //2getPrecision(0.479) //3getPrecision(1) //0getPrecision(0) //0 Copy
getPrecision(2.1) //1getPrecision(9.65) //2getPrecision(0.479) //3getPrecision(1) //0getPrecision(0) //0
gets the precision of a number (how many decimal digits)