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