Si la precisión es importante y necesita resultados consistentes, aquí hay algunas propuestas que devolverán la parte decimal de cualquier número como una cadena, incluido el "0" inicial. Si lo necesita como flotador, simplemente agregue var f = parseFloat( result )
al final.
Si la parte decimal es igual a cero, se devolverá "0.0". Nulos, NaN y números indefinidos no se prueban.
1. String.split
var nstring = (n + ""),
narray = nstring.split("."),
result = "0." + ( narray.length > 1 ? narray[1] : "0" );
2. String.substring, String.indexOf
var nstring = (n + ""),
nindex = nstring.indexOf("."),
result = "0." + (nindex > -1 ? nstring.substring(nindex + 1) : "0");
3. Math.floor, Number.toFixed, String.indexOf
var nstring = (n + ""),
nindex = nstring.indexOf("."),
result = ( nindex > -1 ? (n - Math.floor(n)).toFixed(nstring.length - nindex - 1) : "0.0");
4. Math.floor, Number.toFixed, String.split
var nstring = (n + ""),
narray = nstring.split("."),
result = (narray.length > 1 ? (n - Math.floor(n)).toFixed(narray[1].length) : "0.0");
Aquí hay un enlace jsPerf: https://jsperf.com/decpart-of-number/
Podemos ver que la proposición # 2 es la más rápida.
n = Math.floor(n);
solo devuelve el resultado deseado (la parte entera) para números no negativos