JS arrays
Posted: Sat Apr 12, 2003 3:59 am
this is for JS. Was wondering if it's possible to store number value (not strings) in arrays?? if yess can some one show me the syntax for it, thnx.
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
example="567"; // A string.
example2=parseInt(example); // A number (integer).
example3=parseFloat(example); // A number (floating-point).