How do I access the value here by Array object:
Stuck here. Like the value in "data"'s first and second items. Thanks :)
{ "c2array":true , "size":[3,1,1] ,"data":[ ["success"],[" number is specified"],["test1"] ] }
Develop games in your browser. Powerful, performant & highly capable.
Load it into the array object using the "load" action and then you can access them with the array expressions.
ex.
First item:
Array.At(0)
2nd:
Array.At(1)