Convert string to create an integer or real value with parseFloat(str) in JavaScript

Description

The following code shows how to convert string to create an integer or real value with parseFloat(str).

Example


<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
document.writeln(parseFloat("12.34.5"));
</script><!--  w  w w  .ja v a 2 s.  c o m-->
</head>
<body>
</body>
</html>

Click to view the demo

The code above generates the following result.

Convert string to create an integer or real value with parseFloat(str) in JavaScript
Home »
  Javascript Tutorial »
    Data Type »
      Number parseFloat
Javascript Tutorial Number parseFloat
Convert "1234asdf" to float with parseFloat...
Convert hexadecimal integer to float with p...
Convert string in Scientific notation to fl...
Convert string to create an integer or real...
Convert string with initial zeros to float ...