I am trying to manipulate data returned from a contacts service call. I want to filter out only the phone numbers and store them in a local variable as and array. I use the following code
var Contacts=[];
var Numbers=[];
for (var i=0; i,Numbers);
which is a modification of the code I got from http://docs.phonegap.com/en/2.4.0/cor...
When I place an alert in the code it displays the data as I expect it to be stored but when I try the code on phone my program just hangs. Am I doing something wrong?