I'm using json2html and trying to figure out the correct syntax for calling JSON data within an array:
{ biographicData: [
{
firstName: 'John',
lastName: 'Doe',
birthDate: '10/15/1983',
email: 'johndoe@gmail.com',
workPhone: '678-901-2345',
mobilePhone: '098-765-4321',
homePhone: '123-456-7890'
}
]}
In other cases, I've used something like {"tag":"div","html":"${biographicData.firstName}"} to get the values, but that doesn't seem to work when the data is in an array. What do I need to do to fix this call?