jQuery 05: AJAX Operations

for(let p of data.data) i am not able to understand the meaning of data.data in this line which is mention in the code

The data object is the object which is received after the AJAX call. It is a JSON object. When you are doing data.data, you are accessing the “data” key from the object.
Eg:
var a = {
a: 4
}
console.log(a.a)

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.