I need to read an array on my jade page.
In my controller I'm passing it as follows:
res.render('graphics/index', {namesClient:JSON.stringify(namesClient)}
In jade I'm reading as follows:
var names= !{JSON.stringify(namesClient)};
However, I need to load the information from namesClient[i].name
, how do I read?