js 中一些意想不到的运用技能(延续更新,迎接补充)
1. 箭头函数 =>
返回 map
对象
// 平常的写法
const makeMap = () => {
return {key: 'value'};
};
// 简约的写法
const makeMap = () => ({key: 'value'});
2. 对象属性名不确定,须要动态的传入
// 平常的写法
const makeMap = (key, value) => {
const obj = {};
obj[key] = value;
return obj;
};
// 简约的写法
const makeMap = (key, value) => ({[key]: value});
3. 复制一个对象,并重写个中的一些属性
const source = {hello: 'hello', hi: 'hi'};
// 平常的写法
const target = Object.assign({}, source);
target.hello = 'hello everyone';
// 简约的写法
const target = {...source, hello: 'hello everyone'};
4. 数组解构为函数参数
const arr = [1, 2, 3];
const plus = (...args) => args.reduce((a, b) => a + b);
// 平常的写法
plus(arr[0], arr[1], arr[2], 4, 5);
// 简约的写法
plus(...arr, 4, 5);
5. 向一个数组增加另一数组的一切元素
const arr1 = [1, 2, 3];
const arr2 = [4, 5, 6];
// 平常的写法
arr1 = arr1.concat(arr2);
// 简约的写法
arr1.push(...arr2);
6. 回调函数简写
// 平常的写法
promise.catch(e => {
console.log(e);
});
// 简约的写法
promise.catch(console.log);
7. 多级箭头函数 =>
// 平常的写法
const makeTimesFunc = times => {
return value => {
return value * times;
};
};
// 简约的写法
const makeTimesFunc = times => value => value * times;
8. 从右向左函数复式挪用
// 不确定元素个数,举例 3 个
const fnCollection = [str => `${str} | fisrt`, str => `${str} | second`, str => `${str} | third`];
// 平常的写法
const addManySuffixes = str => {
let result = str;
for(let i = fnCollection.length - 1; i > -1; i -= 1)
result = fnCollection[i](result);
return result;
};
// 简约的写法
const addManySuffixes = fnCollection.reduce((a, b) => str => a(b(str)));
// 能够把 str 参数扩大成恣意参数
const addManySuffixes = fnCollection.reduce((a, b) => (...args) => a(b(...args)));
后续
更多博客,检察 https://github.com/senntyou/blogs
版权声明:自在转载-非商用-非衍生-坚持签名(创意同享3.0许可证)