1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ "for": { "prefix": "for", "description": "ejs for loop", "body": [ "<% for (let ${1:i = 0}; ${2:i<arr.length}; ${3:i++}) { %>", "\t${0:body}", "<% \\} %>" ] }, "forE": { "prefix": "forE", "description": "ejs for Each loop", "body": [ "<% ${1:array}.forEach((${2:single var}) => { %>", "\t${0:body}", "<% \\}) %>" ] } }