i have multiple objects as response from an api call with Ajax, how do i "print" the data that's inside the object?
$.ajax({
url: 'url',
dataType: 'json',
type: 'post',
contentType: 'application/json',
data: JSON.stringify( { parameters } ),
processData: false,
success: function( data ){
console.log(data); <- this log all objects, i want the info inside the objects
},
});
how do i print every single "variable" for each object, or storage on an array.
