Hey there, I was wondering how to access an array in Javascript from a JSON object structured like this:
Object {results: "success", message: "Your message has been sent successfully", error_id_array: Array[1]}
error_id_array: Array[1]
0: "2"
length: 1
__proto__: Array[0]
message: "Your message has been sent successfully"
results: "success"
__proto__: Object
This question is in relation to this post about working with arrays returned from PHP scripts using AJAX. Thank you!