<% _.forEach(users, function(user) { %>
<%- user %>
<% }); %>
My name is <%- name %>
I like <%- hobbies %> but hate being a <%- occupation %>
{"ScriptPreparationCode":null,"TestCases":[{"Name":"lodash template","Code":"\r\n\r\n// Set the HTML template\r\nlet userlist = _.template($(\u0027.userlist\u0027).html());\r\nlet bio = _.template($(\u0027.bio\u0027).html());\r\n\r\n// render the template using hte data\r\n$(\u0027.content\u0027).html(userlist(users));\r\n$(\u0027.content\u0027).after(bio(person));","IsDeferred":false},{"Name":"Art template","Code":"\r\n\r\n// Set the HTML template\r\nlet userlist = _.template($(\u0027.userlist\u0027).html());\r\nlet bio = _.template($(\u0027.bio\u0027).html());\r\n\r\n// render the template using hte data\r\n$(\u0027.content\u0027).html(userlist(users));\r\n$(\u0027.content\u0027).after(bio(person));","IsDeferred":false}]}