arrow function
举例:(x) => x + 6
(x) => x + 6
相当于
function(x){ return x + 6; }
可以利用map方法 将数组中的每个元素进行处理
arr.map(x=>x.length)