My array with element,
var count =[["test1.img","test2.img","test3.img"]];
If I count array element [] single dimensional, The count is working fine But If I use like this [[]], It's not working.
MY Question
How to count the total array elements in a two-dimensional array.
The output should be 3.
Thanks