How do I access something like this with Javascript and Jquery?
"condition" : [{"conditionId":["3000"],"conditionDisplayName":["Used"]}]
(this is just an excerpt)
I tried using item.condition and I got:
[{"conditionId":["3000"],"conditionDisplayName":["Used"]}] as a result.
How do I get the conditionDisplayName?
I've also tried using : item.condition.conditionDisplayName but it doesn't work nor does item.condition[1]
item.condition[1]- close, but array indices in javascript start at0not1