Ejemplo 1: js comprueba si el número tiene decimales
num % 1 != 0
Ejemplo 2: cómo saber si un número tiene un número decimal js
function hasDecimal (num) {
return !!(num % 1);
}
hasDecimal(2) // true
hasDecimal(2.345) // false
Ejemplo 3: verifique si el número es un javascript decimal
The Number. isInteger() method determines whether a
value an integer.
This method returns true if the value is of the type
Number, and an integer (a number without decimals).
Otherwise it returns false.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)