What is the best way to convert the string values to an int array, e.g.:
var s = '1,1,2';
to:
var a = [1,1,2];
Thanks
|
What is the best way to convert the string values to an int array, e.g.:
to:
Thanks |
|||||||
|
|
JavaScript is a dynamic-typed language, which means that it might not be so important for those array items to be numbers. If that's the case, you might want to consider just using
If it is important that they're numbers, then your best bet is to iterate over them afterwards:
There's also the ECMAScript 5th Edition method |
|||||||||
|
And for those browsers that don't implement
|
|||
|
If the data is secure, you could use
If you're not sure about security, you could use
...though you'll need to include a parser in browsers that don't support it natively. |
|||||||
|