Welcome to Bucaro TecHelp!

Bucaro TecHelp
HTTPS Encryption not required because no account numbers or
personal information is ever requested or accepted by this site

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact RSS News Feeds News Feeds

Use JavaScript parseInt() and parseFloat() to Convert Strings to Numbers

When you use different data types in operations, JavaScript tries it's best to perform the proper data type conversions to make the operation work, but sometimes it can't figure out what you have in mind. Take for example the simple addition operation shown below.

4 + "4"

You might assume the result would be the number 8, but instead the result would be the text string "44". Another example is shown below.

4.4 + "4.4"

You might assume the result would be the number 8.8, but instead the result would be the text string "4.44.4".

If the results of a mathematical operation in your script are not what you expected, make sure that you convert any numbers represented as strings to the actual number data type before performing the operation.

JavaScript provides two built-in functions to convert numbers represented as strings to actual numbers, parseInt() and parseFloat().

parseInt()

parseInt() converts an integer represented as string to the number data type. An integer is a whole number with no decimal point. The statement shown below shows the previous operation using parseInt().

4 + parseInt("4")

This time the result would be the number 8 as expected.

parseFloat()

parseFloat() converts a floating-point number represented as string to the number data type. The statement shown below shows the previous operation using parseFloat().

4.4 + parseFloat("4.4")

This time the result would be the number 8.8 as expected.

Some Other Useful JavaScript Built-in Functions for Determining Data Type

typeof() Function

The typeof() function returns a string indicating the data type of a literal or variable passed to it. In the example below the message box would display string.

var result = 4.4 + "4.4";
alert(typeof(result));

In the example below the message box would display number.

var result = 4.4 + parseFloat("4.4");
alert(typeof(result));

isNaN() Function

The isNaN() function returns a boolean indicating if a literal or variable passed to it is an illegal number. It returns true if the value is NaN (Not-a-Number), and false if it is a number. In the example below the message box would display true (result is not a number).

var result = 4.4 + "4.4";
alert(isNaN(result));

If the results of a mathematical operation in your script are not what you expected, these JavaScript built-in functions; parseInt(), parseFloat(), typeof(), and isNaN() should help solve the problem.

More Java Script Code:
• Regular Expression Basics : Match a Set of Characters
• Code to Add Music to Your Webpage
• Prototype Keyword Gives JavaScript Object Oriented Inheritance
• Calculators for Your Website : Decimal to Hexidecimal Converter
• HTML5 Canvas lineCap and lineJoin Attributes
• JavaScript to Copy and Paste Text to the Clipboard
• Introduction to JavaScript Programming
• Using a Select List for Navigation
• Basic State Machines
• Java Script Code to Calculate Speed / Distance of Falling Object

RSS Feed RSS Feed

Follow Stephen Bucaro Follow @Stephen Bucaro



Fire HD
[Site User Agreement] [Privacy Policy] [Site map] [Search This Site] [Contact Form]
Copyright©2001-2024 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268