I want to use a simple loop like for(int i=0; i<10; i++){}
.
How do I use it in the Jade engine? I'm working with Node.js and use the expressjs framework.
for example:
- for (var i = 0; i < 10; ++i) {
li= array[i]
- }
you may see https://github.com/visionmedia/jade for detailed document.