So hi guys,
lets make this very clear. In php i used json_encode(...) and then got the value in javascript, looks as the following:
["float","float","float","float"] // PS: This is a string...
And i would like to make this into a normal javascript array, like so:
Arr[0] // Will be float
Arr[1] // Will be float
Arr[2] // Will be float
Arr[3] // Will be float
And now I'm asking you, how is this possible?
Thank You