“Cómo saber si un número tiene un número decimal JS” Código de respuesta

JS verifique si el número tiene decimales

num % 1 != 0
Aci

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
Smart Dragon

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.
Nasty Narwhal

Respuestas similares a “Cómo saber si un número tiene un número decimal JS”

Preguntas similares a “Cómo saber si un número tiene un número decimal JS”

Más respuestas relacionadas con “Cómo saber si un número tiene un número decimal JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código