extract data from javascript multidimentional arrays -


i'm having ajax call returns nested arrays

success: function(data, el){ console.log(data); 

here's data

enter image description here

i need extract [name] value [metas] i've tried

data[1][0][3]  

but result 'undefined'

associative array, try:

data['metas'][0]['name']  

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -