All seems like it should be very simple but I am having issues.
I would like to create an array and list all 'questions' within the array from an AJAX response using jQuery.
I gather my thinking is out as question just returns a higher level object containing all data.
var questions = response.questions;
console.log(response.questions);
var question = [
$.each(questions, function (value) {
value.question
})
];
response.questionslook like?