Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 18, 2014 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/a630be994852ca0de1b5 to your computer and use it in GitHub Desktop.
Save devdays/a630be994852ca0de1b5 to your computer and use it in GitHub Desktop.
Underscore - Loops
var t2 = _.template(
"Users: <%_.forEach(users, function (u,i) {%>"
+ "<%if (i>0) {%>, <%}%>"
+ "<%=u%>"
+ "<%})%>"
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment