1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 03:02:21 +00:00

Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages

This commit is contained in:
ruanyf 2016-05-21 08:32:38 +08:00
commit cb8ec78920

View File

@ -522,7 +522,7 @@ func('Jack') // "Hello Jack!"
```javascript
var template = `
<ul>
<% for(var i=0; i < data.supplies.length; i++) {%>
<% for(var i=0; i < data.supplies.length; i++) { %>
<li><%= data.supplies[i] %></li>
<% } %>
</ul>