ES6的箭头函数格式

Web前端

箭头函数格式:(参数): 返回值 => {函数体}
例:
(control: AbstractControl): {[key: string]: any} | null => {
const forbidden = nameRe.test(control.value);
return forbidden ? {'forbiddenName': {value: control.value}} : null;
}

我的博客,记录,笔记