Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
//调用时若参数b没有,则使用默认的0
f = (a, b = 0) => a + b;
console.log(f(10, 5));
f = (a, b) => a + b;
console.log(f(1, 2, 3, 4, 5));
// 如何将全部参数接收到? 剩余参数 ...
// ...rest: 用在函数的形参中,归并
f = (a, b, ...c) => console.log(a, b, c);
// 将多出来的3,4,5压入到数组c中
f(1, 2, 3, 4, 5);
let arr = [1, 2, 3, 4, 5];
// 将一个数组打散,变成一个个离散的值
console.log(...arr);
// 与下面这条语句功能一样
console.log(f(1, 2, 3, 4, 5));
// ...用在参数调用时的实参中,是解包,打散
// f = (a, b, c, d, e, f) => a + b + c + d + e + f;
f = (...arr) => arr.reduce((a, c) => a + c);
console.log(f(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
函数只能有一个返回值,默认单值返回,需要返回多个值,使用数组,对象来解决
本质 上仍然返回一个值,只不过这是一个引用类型的复合值
//数组的方式
let fn = () => [1, 2, 3];
let res = fn();
console.log(res);
//对象的方式
fn = () => ({
id: 2,
name: 'admin',
age: 28,
});
res = fn();
console.log(res);
let user = {
name: '猪老师',
};
console.log(user.name);
let name = '王老师';
user = {
// name: name,
name,
};
console.log(user.name);
user = {
name,
// getName: function() {
// return 'Hello, ' + this.name;
// },
// 简化方案: 直接将 ": function"删除
getName() {
return 'Hello, ' + this.name;
},
};
console.log(user.getName());
反引号:模板字面量, 支持在字符串插入变量/表达式: 插值
console.log(`Hello world`);
let name = '猪老师';
console.log('hello ' + name);
console.log(`hello ${name}`);
let gender = 1;
console.log(`${gender ? `男:${name}` : `女`}`);
使用模版字面量为参数的函数
calc`数量: ${10}单价: ${500}`;
// 模板函数的参数:
// 第一个参数: 模板字面量中的"字符串字面量"
// 第二个参数: 模板字面量中的"插值"数组
function calc(strings, ...args) {
console.log(strings);
console.log(args);
console.log(args[0] * args[1]);
}
模板字面量:可以使用插值表达式的字符串
模板函数: 可以使用”模板字面量”为参数的函数
模板函数,就是在”模板字面量”之前加一个标签/标识符,而这个标签,就是一个函数名
模板函数的参数是有约定的, 不能乱写, 第一个是字面量数组,从第二起才是内部的占位符参数
模板字面量, 也叫”模板字符串” , 是同义词,我觉得用”模板字面量”更直观,准确
模板函数, 有的书也翻译与”标签函数”, 因为 它使用”模板字面量”做参数,称为”模板函数”更直观,必须传一个模板字面量当参数