What would be the way to count the items of a json
response with this structure:
[['dato', 'dato', 'dato'], ['dato', 'dato', 'dato']]
and so on.
I know that using this function count = Object.keys(res).length;
you can count the items of each element, I want to count all the items of all the elements.
Thanks for your help.