Answer the question
In order to leave comments, you need to log in
How to select only "NestedFolder1" and "NestedFolder2" objects?
You need to select "NestedFolder1" and "NestedFolder2" (despite the fact that there can be a lot of them "NestedFolder3" and so on), what is the best way to do it?
[
[
"a",
"v",
"b",
"d"
],
{
"NestedFolder1": [
"a",
"s",
"d",
"v"
],
"NestedFolder2": [
"a",
"v",
"b",
"a",
"b"
]
}
]
Answer the question
In order to leave comments, you need to log in
As if:
console.log( x[1]['NestedFolder1'] );
console.log( x[1]['NestedFolder2'] );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question