I have an array of json, which I currently get values like this:
for(element in data){
data[element]['productor']
}
And my question is the following, would I have like to play in html, all my keys and values without necessarily knowing what they are?
if I take the ['productor']
on the screen it appears [object Object]
Thank you