How can i get array key-values pair using javascript -


for(i=0;i<=array_values.length;i++){     var a=array_values[i].amounts;     var t=array_values[i].tax;     alert(a);     alert(t);  } 

error : typeerror: array_values[i] undefined

var a=array_values[i].amounts; var a=array_values[i].amounts; 

change

for(i=0;i<=array_values.length;i++) 

to

for(i=0;i<array_values.length;i++) 

<= <


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -