SageFix. LetsFix!  
Current Location : Home > Web Development > JavaScript > String to number conversion. How? Share/Save/Bookmark    

Main Menu
SageFix - Let's Fix

Board Categories
    Web Site Designing
- Graphics
    Web Development
- .NET
- Classic ASP
- JavaScript
- PHP
    WebSite Management
- Promotion Techniques
- Search Engine Optimization
    Databases
- MySQL

Tutorials

Database Connection Strings

  Contact Us


 1 - 4 of 4 [Total 1 Pages]  
String to number conversion. How?      Jul 30, 2002, 05:49 1
  
I want to convert a string to a number in JavaScript... How can I do that?


For example: a page that puts a and b together and has window.prompt to define a and b. But when a user sets a to lets say 3 (a = window.prompt("a=?", "3"), this is not a number 3 but a string "3" and therefore cannot be used in calculations.
So how can I convert this "3" string (or any other "number" string to a number?)

 
      Jul 30, 2002, 06:19 2
  
Use the parseInt function:
Code:
number = parseInt("3");

 
      Jul 30, 2002, 06:51 3
  
Right on skunk, or if you have a decimal (floating point) you need this:
Code:
var decimalStr = "3.2";decimal = parseFloat(decimalStr);
Conversely, to switch number variable to string, just concatentate an empty string
Code:
var int = 3;var intStr = int + "";

 
      Jul 30, 2002, 08:35 4
  
You can also eval - if the circumstances are right - to go both ways.

Flawless

 
 1 - 4 of 4 [Total 1 Pages]  









Subscribe to our mailing list
email


Current Location : Home > Web Development > JavaScript > String to number conversion. How? Share/Save/Bookmark    

Development problem? SageFix is completely free -- paid for by advertisers and donations. Click here to Contact Us If you have any query. Enjoy!
Request processed in 7.0E-5 seconds Home - Contact Us - Terms Of Service - Privacy Policy - Copyrights - Top
Advertisements do not imply our endorsement of that product or service.
Current server time now is 18-Mar-2010 06:21:02
Copyright © 2009 Sagefix Inc. All rights reserved.
Powered By SageFix