function isFloat(num) { return parseInt( num ) !== parseFloat( num ) } alert([ isFloat('4.0'), isFloat('4'), isFloat(4), isFloat(4.1) ].join('\n'));