Feb 15, 2001 #1 arunjp Programmer Jan 10, 2001 29 US How to convert string to int in Javascript. Is there any method for doing that. AJP
Feb 15, 2001 #2 jaredn Programmer Sep 1, 1999 1,506 US there are three that I am familiar with, assuming x is a string: x=window.parseInt(x) || x=new Number(x) || x=x/1 jared@aauser.com - http://webfx.eae.net Upvote 0 Downvote
there are three that I am familiar with, assuming x is a string: x=window.parseInt(x) || x=new Number(x) || x=x/1 jared@aauser.com - http://webfx.eae.net
Feb 15, 2001 1 Thread starter #3 arunjp Programmer Jan 10, 2001 29 US Thank u Jaredn AJP Upvote 0 Downvote