I\'m using Handlebars templates and JSON data is already represented in [Object object], how do I parse this data outside of the Handlebars? For example, I\'m trying to popu
You can simple stringify the JSON:
var user = {} user = {'id' : 123, 'name' : 'First Name'}; // for print user.stringify = JSON.stringify(user);
Then in template print by:
{{{user.stringify}}};