I have the array of Objects as follows
Object {Results:Array[2]}
Results:Array[2]
[0-1]
0:Object
id=1
name: "Rick"
Value: "34343"
1:Object
id=2
name:'david'
Value: "2332"
As you can see, the Value field in the array of Objects is a string. I want all these to be converted to a number instead.
The final data should look like this. can someone let me know how to achieve this please.
Object {Results:Array[2]}
Results:Array[2]
[0-1]
0:Object
id=1
name: "Rick"
Value: 34343
1:Object
id=2
name:'david'
Value: 2332