Arrow function restore函数
console.log(materials.map(material => material.length));rest
写出这个的标准函数形式,就像下面这个形式同样
var selected = allJobs.filter(function (job) {
return job.isSelected();
};it
var selected = allJobs.filter(job => job.isSelected());io
标准函数形式:console