<% let testLet = "let" %>

aries is support that: <%= testLet %>

<% const testConst = "const"; %>

aries is support that: <%= testConst %>

<% let tempString = "string"; %> <% let templateString = `template ${tempString} `;%>

aries is support that: <%= templateString %>

<% var stringRaw = String.raw({ raw: 'srn.a ' }, 't', 'i', 'g', 'r', 'w'); %>

aries is support that: <%= stringRaw %>

<% if( Symbol.for("bar") === Symbol.for("bar") ){ %>

aries is support that: <%= "Symbol" %>

<% } %> <% var m = new Map(); %> <% var o = {p: "Hello World"};%> <% m.set(o, "map"); %> <% let testMap = m.get(o); %>

aries is support that: <%= testMap %>

<% function* helloWorldGenerator() { %> <% yield 'Generator'; %> <% return 'ending'; %> <% } %> <% let hw = helloWorldGenerator(); %> <% let testGenerator = hw.next().value; %>

aries is support that: <%= testGenerator %>

<% let testArrowFunction = ""; %> <% ["arrow","fuction"].forEach((x) => { %> <% testArrowFunction += ' ' +x; %> <% })%>

aries is support that: <%= testArrowFunction %>

<% var str = ''; %> <% for (let item of 'for...of') { %> <% str += item; %> <% } %>

aries is support that: <%= str %>

<% include "foot.html" %> <% includeId "foot?param1=1¶m2=2" %>