I have an array, and its indexes have a serialized value. I would like to separate these values and put each value in another array (with indices properly separated). Here is my code:
data = ["["RibS7K/JS+ZTYtjDxqh5hg==","lO/CWn5lb3eqCkDhm9PpwA=="]", "["teste a","teste b"]", "[24351,24352]", "["png","png"]", "["teste a","teste b"]", "[7,6]", "[107.0,99.0]"]
newObject.idCrip = data[0];
When I put in newObject.idCrip
it gets data[0]
, it gets with ["RibS7K/JS+ZTYtjDxqh5hg==","lO/CWn5lb3eqCkDhm9PpwA=="]
and not with two separate values and this is disturbing me. Any solution?