For example, the mongo document as follows:
{
"_id": ObjectId("xxx"),
"array": [
0,
1,
[2, 3],
4
]
}
Is there a method to get the 2
from the document?
For example, the mongo document as follows:
{
"_id": ObjectId("xxx"),
"array": [
0,
1,
[2, 3],
4
]
}
Is there a method to get the 2
from the document?