Www.chidrestechtutorials.com

Converts a given value to a float number, if not possible to convert then returns NaN value. Ex: If the given value is of integer type, then it converts and returns an equivalent float number. document.write( parseFloat(24) ); // 24. document.write(parseFloat(12+12)); // 24. If the given value is of float type, then it returns the float number ... ................
................