cde9bf3777c62fcdc91c3cf08fcacec0d859071d
[platform/framework/web/crosswalk-tizen.git] /
1 arr.map(a => a * 2);
2 arr.map(b => {
3   return b * 2;
4 });
5 arr.map((c, i) => {
6   return c * i;
7 });
8 arr.map(d => {
9   return d * 2;
10 });
11 arr.map((e, f, g) => e * f - g);
12
13 // default params (#285)
14 let defaultParams = (x, y = 1, z = 2) => {
15   return x + y + z;
16 }