=>是es6语法中的arrow function
=>
arrow function
(x) => x + 6
相当于
function(x){ return x + 6; };
js中 => 的含义
原文:http://www.cnblogs.com/developer-os/p/6268479.html