Algorithmus, um zu wissen, ob eine Zahl eine Ganzzahl ist
// The most basic thing you could do is check if x=floor(x).
if (num != Math.floor(num)) { ... }
DevPedrada
// The most basic thing you could do is check if x=floor(x).
if (num != Math.floor(num)) { ... }