This is the code
var MixedArrays = ["Hello", 111113.5, "whose are numbers and strings", "on the right is the second bracket", ["thisIsTheSecondBracket", 234.235, "thats a decimal number", 142], "!", "ª", "this is data, in form of a string"];
MixedArrays[1];
111113.5
MixedArrays[2][1];
"h"
My question is why [2][1], outputs only one later because I was expecting the whole data. Because [2]
will send it to the second bracket and [1]
will select 234.235