5 分钟掌握 javascript 实用窍门-mile米乐体育
web技术
2020年04月06日 22:18
0
简评:一开始 javascript 只是为网页增添一些实时动画效果,现在 js 已经能做到前后端通吃了,而且还是年度流行语言。本文分享几则 js 小窍门,可以让你事半功倍 ~
1. 删除数组尾部元素
一个简单方法就是改变数组的length
值:
const arr = [11, 22, 33, 44, 55, 66]; // truncanting arr.length = 3; console.log(arr); //=> [11, 22, 33] // clearing arr.length = 0; console.log(arr); //=> [] console.log(arr[2]); //=> undefined
2. 使用对象解构(object destructuring)来模拟命名参数
如果需要将一系列可选项作为参数传入函数,你很可能会使用对象(object)来定义配置(config)。
dosomething({ foo: 'hello', bar: 'hey!', baz: 42 }); function dosomething(config) { const foo = config.foo !== undefined ? config.foo : 'hi'; const bar = config.bar !== undefined ? config.bar : 'yo!'; const baz = config.baz !== undefined ? config.baz : 13; // ... }
不过这是一个比较老的方法了,它模拟了 javascript 中的命名参数。
在 es 2015 中,你可以直接使用对象解构:
function dosomething({ foo = 'hi', bar = 'yo!', baz = 13 }) { // ... }
让参数可选也很简单:
function dosomething({ foo = 'hi', bar = 'yo!', baz = 13 } = {}) { // ... }
3. 使用对象解构来处理数组
可以使用对象解构的语法来获取数组的元素:
const csvfileline = '1997,john doe,us,john@doe.com,new york'; const { 2: country, 4: state } = csvfileline.split(',');
4. 在 switch 语句中使用范围值
可以这样写满足范围值的语句:
function getwaterstate(tempincelsius) { let state; switch (true) { case (tempincelsius <= 0): state = 'solid'; break; case (tempincelsius > 0 && tempincelsius < 100): state = 'liquid'; break; default: state = 'gas'; } return state; }
5. await 多个 async 函数
在使用 async/await 的时候,可以使用 promise.all 来 await 多个 async 函数
await promise.all([anasynccall(), thisisalsoasync(), onemore()])
6. 创建 pure objects
你可以创建一个 100% pure object,它不从object
中继承任何属性或则方法(比如constructor
, tostring()
等)
const pureobject = object.create(null); console.log(pureobject); //=> {} console.log(pureobject.constructor); //=> undefined console.log(pureobject.tostring); //=> undefined console.log(pureobject.hasownproperty); //=> undefined
7. 格式化 json 代码
json.stringify
除了可以将一个对象字符化,还可以格式化输出 json 对象
const obj = { foo: { bar: [11, 22, 33, 44], baz: { bing: true, boom: 'hello' } } }; // the third parameter is the number of spaces used to // beautify the json output. json.stringify(obj, null, 4); // =>"{ // => "foo": { // => "bar": [ // => 11, // => 22, // => 33, // => 44 // => ], // => "baz": { // => "bing": true, // => "boom": "hello" // => } // => } // =>}"
8. 从数组中移除重复元素
通过使用集合语法和 spread 操作,可以很容易将重复的元素移除:
const removeduplicateitems = arr => [...new set(arr)]; removeduplicateitems([42, 'foo', 42, 'foo', true, true]); //=> [42, "foo", true]
9. 平铺多维数组
使用 spread 操作平铺嵌套多维数组:
const arr = [11, [22, 33], [44, 55], 66]; const flatarr = [].concat(...arr); //=> [11, 22, 33, 44, 55, 66]
不过上面的方法仅适用于二维数组,但是通过递归,就可以平铺任意维度的嵌套数组了:
function flattenarray(arr) { const flattened = [].concat(...arr); return flattened.some(item => array.isarray(item)) ? flattenarray(flattened) : flattened; } const arr = [11, [22, 33], [44, [55, 66, [77, [88]], 99]]]; const flatarr = flattenarray(arr); //=> [11, 22, 33, 44, 55, 66, 77, 88, 99]
希望这些小技巧能帮助你写好 javascript ~
展开全文