11th work3

Posted kazama

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11th work3相关的知识,希望对你有一定的参考价值。

Arrow function restore
var materials = [
‘Hydrogen‘,

‘Helium‘,

‘Lithium‘,

‘Beryllium‘
];


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

var selected = allJobs.filter(job => job.isSelected());

 

先画饼。















以上是关于11th work3的主要内容,如果未能解决你的问题,请参考以下文章

May 11th 2017 Week 19th Thursday

June 11th 2017 Week 24th Sunday

July 11th 2017 Week 28th Tuesday

September 11th 2017 Week 37th Monday

September 11th 2016 Week 38th Sunday

cppPrimer学习11th